:root {
  --ink: #151412;
  --charcoal: #22201d;
  --smoke: #f6f3ee;
  --stone: #e8dfd1;
  --line: #d8cdbb;
  --gold: #c6a85f;
  --gold-deep: #9d7d32;
  --muted: #686057;
  --white: #fff;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Hanken Grotesk", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--smoke);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 64px);
  transition: background 240ms ease, border 240ms ease;
}

.site-header.is-scrolled,
.site-header.page-header {
  background: rgba(246, 243, 238, 0.94);
  border-bottom: 1px solid rgba(198, 168, 95, 0.26);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  width: clamp(160px, 15vw, 245px);
  padding: 0;
}

.brand img {
  width: 100%;
}

.brand .logo-white {
  display: none;
  filter: invert(1) brightness(2.3);
}

.site-header:not(.is-scrolled):not(.page-header) .brand-hero .logo-color {
  display: none;
}

.site-header:not(.is-scrolled):not(.page-header) .brand-hero .logo-white {
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header.is-scrolled .nav,
.site-header.page-header .nav {
  color: var(--ink);
}

.nav a {
  position: relative;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}

.nav a:hover::after {
  right: 0;
}

.nav-cta {
  border: 1px solid currentColor;
  padding: 12px 16px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(198, 168, 95, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 160px clamp(20px, 6vw, 90px) 72px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background: var(--charcoal);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 11, 9, 0.78), rgba(12, 11, 9, 0.26) 50%, rgba(12, 11, 9, 0.46)),
    linear-gradient(180deg, rgba(12, 11, 9, 0.38), rgba(12, 11, 9, 0.08) 42%, rgba(12, 11, 9, 0.62));
}

.hero-content {
  max-width: 820px;
}

.overline {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p:not(.overline) {
  font-weight: 400;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 92px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 5vw, 64px);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.2;
}

.hero-content > p:not(.overline) {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.5vw, 21px);
}

.hero h1,
.page-hero h1,
.contact-hero h1,
.process-hero h1 {
  line-height: 1.26;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button.primary {
  background: var(--gold);
  color: var(--ink);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button.light {
  color: var(--white);
}

.intro-band,
.founders,
.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(30px, 8vw, 110px);
  padding: clamp(54px, 8vw, 100px) clamp(20px, 6vw, 90px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-band span {
  color: var(--gold);
  font-weight: 800;
}

.intro-band h2,
.founders h2,
.contact-strip h2 {
  max-width: 850px;
}

.intro-band p,
.founders p,
.contact-strip p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
}

.section-pad {
  padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 90px);
}

.process {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246, 243, 238, 0.96), rgba(246, 243, 238, 0.78)),
    url("/assets/images/process-abstract.png") center / cover no-repeat;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(232, 223, 209, 0.18));
}

.process > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading a {
  flex: 0 0 auto;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading.narrow {
  display: block;
  max-width: 900px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 20px;
}

.project-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
}

.project-card.feature {
  grid-row: span 2;
  min-height: 740px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 700ms ease;
}

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

.project-card > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  color: var(--white);
  background: transparent;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.86), 0 1px 3px rgba(0, 0, 0, 0.72);
}

.project-card p {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card span {
  display: block;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
}

.project-card button {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  padding: 11px 14px 10px;
  border: 1px solid rgba(198, 168, 95, 0.82);
  background: rgba(15, 15, 14, 0.72);
  color: var(--white);
  font: 800 11px/1 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: auto;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.project-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 56px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-modal.is-visible {
  display: flex;
}

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

.project-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 9, 0.78);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-modal.is-open .project-modal__backdrop {
  opacity: 1;
}

.project-modal__panel {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  width: min(1120px, 100%);
  max-height: min(760px, 88vh);
  overflow: auto;
  background: var(--smoke);
  border: 1px solid rgba(198, 168, 95, 0.42);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(34px) scale(0.96);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.project-modal.is-open .project-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-modal__media {
  position: relative;
  display: grid;
  grid-template-rows: minmax(420px, 1fr) auto;
  min-height: 100%;
  background: #0f0f0e;
}

.project-modal__stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.project-modal__panel img,
.project-modal__panel video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-modal__panel video {
  background: #0f0f0e;
}

.project-modal__arrow,
.project-modal__maximise {
  position: absolute;
  z-index: 2;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 243, 238, 0.28);
  background: rgba(15, 15, 14, 0.62);
  color: var(--white);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.project-modal__arrow:hover,
.project-modal__maximise:hover {
  border-color: var(--gold);
  background: rgba(15, 15, 14, 0.82);
  transform: translateY(-1px);
}

.project-modal__arrow {
  top: 50%;
  width: 48px;
  height: 58px;
  transform: translateY(-50%);
}

.project-modal__arrow:hover {
  transform: translateY(calc(-50% - 1px));
}

.project-modal__arrow--prev {
  left: 16px;
}

.project-modal__arrow--next {
  right: 16px;
}

.project-modal__arrow svg,
.project-modal__maximise svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.project-modal__maximise {
  top: 16px;
  left: 16px;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-modal__maximise svg {
  width: 18px;
  height: 18px;
}

.project-modal__count {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 9px 12px;
  background: rgba(15, 15, 14, 0.68);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-modal.is-open .project-modal__panel img,
.project-modal.is-open .project-modal__panel video {
  transform: scale(1);
}

.project-modal.is-expanded .project-modal__panel {
  grid-template-columns: 1fr;
  width: min(1620px, 96vw);
  max-height: 94vh;
  background: #0f0f0e;
}

.project-modal.is-expanded .project-modal__copy {
  display: none;
}

.project-modal.is-expanded .project-modal__media {
  min-height: 0;
}

.project-modal.is-expanded .project-modal__stage {
  height: min(82vh, 920px);
}

.project-modal.is-expanded .project-modal__panel img,
.project-modal.is-expanded .project-modal__panel video {
  max-height: none;
  object-fit: contain;
}

.project-modal__gallery {
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
  background: rgba(15, 15, 14, 0.96);
}

.project-modal__gallery button {
  flex: 0 0 78px;
  width: 78px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(198, 168, 95, 0.28);
  background: rgba(246, 243, 238, 0.08);
  cursor: pointer;
  opacity: 0.68;
}

.project-modal__gallery button.is-active {
  border-color: var(--gold);
  opacity: 1;
}

.project-modal__gallery img {
  min-height: 0;
  transform: none;
}

.project-modal__video-button {
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-modal__copy {
  align-self: center;
  padding: clamp(30px, 5vw, 64px);
}

.project-modal__copy h2 {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 58px);
}

.project-modal__copy p:not(.overline) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.project-modal__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 26px;
}

.project-modal__meta div {
  padding: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-modal__meta dt {
  margin-bottom: 7px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-modal__meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.project-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(198, 168, 95, 0.42);
  background: rgba(246, 243, 238, 0.92);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-open {
  overflow: hidden;
}

.split-dark {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(32px, 8vw, 110px);
  padding: clamp(74px, 10vw, 130px) clamp(20px, 6vw, 90px);
  background: var(--charcoal);
  color: var(--white);
}

.split-copy {
  align-self: center;
}

.split-copy p:not(.overline) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.service-rows {
  border-top: 1px solid rgba(198, 168, 95, 0.34);
}

.service-rows a {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(198, 168, 95, 0.34);
}

.service-rows span {
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.18;
}

.service-rows b {
  align-self: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 500;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.timeline article {
  min-height: 330px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(10px);
}

.timeline span {
  display: block;
  margin-bottom: 70px;
  color: var(--gold);
  font-weight: 800;
}

.timeline p {
  color: var(--muted);
}

.home-process {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.85fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 90px);
  background: var(--smoke);
  overflow: hidden;
}

.home-process__media {
  position: relative;
  min-height: clamp(520px, 50vw, 760px);
}

.home-process__main,
.home-process__inset {
  position: absolute;
  object-fit: cover;
  border: 1px solid rgba(198, 168, 95, 0.36);
  box-shadow: 0 28px 80px rgba(34, 32, 29, 0.2);
}

.home-process__main {
  left: 0;
  top: 0;
  width: 78%;
  height: 78%;
}

.home-process__inset.one {
  right: 0;
  top: 9%;
  width: 36%;
  height: 34%;
}

.home-process__inset.two {
  right: 7%;
  bottom: 0;
  width: 52%;
  height: 36%;
}

.home-process__copy > p:not(.overline) {
  max-width: 580px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.home-process .overline,
.founders-visual .overline,
.contact-strip .overline {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.home-process__steps {
  display: grid;
  gap: 1px;
  margin: 34px 0 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.home-process__steps article {
  display: grid;
  grid-template-columns: 52px 0.8fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.home-process__steps span {
  color: var(--gold-deep);
  font-weight: 800;
}

.home-process__steps h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.home-process__steps p {
  margin: 0;
  color: var(--muted);
}

.process-detail {
  padding-top: clamp(80px, 9vw, 120px);
  padding-bottom: clamp(90px, 10vw, 140px);
  background:
    linear-gradient(180deg, rgba(18, 17, 15, 0.82), rgba(18, 17, 15, 0.9)),
    url("/assets/home/home-hero-villa-render.jpg") center / cover fixed no-repeat;
}

.process-detail .timeline {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  border: 0;
}

.process-detail .timeline article {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(198, 168, 95, 0.38);
  background: var(--ink);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: none;
}

.process-detail .timeline article::before,
.process-detail .timeline article::after {
  content: "";
  position: absolute;
  inset: 0;
}

.process-detail .timeline article::before {
  background-position: center;
  background-size: cover;
  transition: transform 700ms ease, opacity 300ms ease;
}

.process-detail .timeline article::after {
  background:
    linear-gradient(180deg, rgba(18, 17, 15, 0.04) 0%, rgba(18, 17, 15, 0.38) 42%, rgba(18, 17, 15, 0.92) 100%),
    linear-gradient(90deg, rgba(18, 17, 15, 0.28), transparent);
}

.process-detail .timeline article:nth-child(1)::before {
  background-image: url("/assets/home/home-villa2-exterior-night.jpg");
}

.process-detail .timeline article:nth-child(2)::before {
  background-image: url("/assets/home/home-penthouse-living.jpg");
}

.process-detail .timeline article:nth-child(3)::before {
  background-image: url("/assets/home/home-office-process.jpg");
}

.process-detail .timeline article:nth-child(4)::before {
  background-image: url("/assets/home/home-office-render.jpg");
}

.process-detail .timeline article:nth-child(5)::before {
  background-image: url("/assets/home/home-villa-sundials33-pool.jpg");
}

.process-detail .timeline article:hover::before {
  transform: scale(1.05);
  opacity: 0.92;
}

.process-detail .timeline span,
.process-detail .timeline h3,
.process-detail .timeline p {
  position: relative;
  z-index: 1;
}

.process-detail .timeline span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  border: 1px solid rgba(198, 168, 95, 0.7);
  color: var(--gold);
  background: rgba(18, 17, 15, 0.62);
  font-size: 13px;
}

.process-detail .timeline h3 {
  margin: 110px 0 12px;
  color: var(--white);
  font-size: clamp(23px, 2vw, 32px);
}

.process-detail .timeline p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.6;
}

.founders {
  background: var(--stone);
}

.founders-visual {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  align-items: center;
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
}

.founders-visual h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 4.5vw, 62px);
}

.founders-visual__copy p:not(.overline) {
  max-width: 620px;
}

.founders-visual__image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(198, 168, 95, 0.34);
  box-shadow:
    0 34px 90px rgba(34, 32, 29, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

.founders-visual__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(18, 17, 15, 0.18));
}

.founders-visual__image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.contact-strip {
  position: relative;
  overflow: hidden;
  align-items: center;
  background: #efe7d8;
  color: var(--white);
}

.contact-strip > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.contact-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 13, 0.68), rgba(8, 11, 13, 0.28)),
    linear-gradient(0deg, rgba(8, 11, 13, 0.18), rgba(255, 255, 255, 0.08));
}

.contact-strip > div {
  position: relative;
  z-index: 1;
}

.contact-strip p {
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(220px, 300px);
  align-items: center;
  gap: 50px;
  padding: 42px clamp(20px, 6vw, 90px);
  background: #0f0f0e;
  color: rgba(255, 255, 255, 0.7);
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer > img {
  opacity: 0.92;
  filter: invert(1) brightness(2.3);
}

.footer a {
  display: inline-block;
  margin: 8px 20px 0 0;
  color: var(--gold);
}

.footer-address {
  margin: 10px 0 2px;
  color: rgba(255, 255, 255, 0.58);
}

.nsia-footer {
  justify-self: end;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  text-align: right;
}

.nsia-footer img {
  width: 44px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.32));
}

.nsia-footer span {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nsia-footer a {
  color: var(--gold);
  margin: 0;
}

.page-hero {
  padding: 170px clamp(20px, 6vw, 90px) 74px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 980px;
  color: var(--ink);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.68;
  font-weight: 400;
}

.technical-hero {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.78), rgba(10, 10, 9, 0.42) 56%, rgba(10, 10, 9, 0.16)),
    linear-gradient(180deg, rgba(10, 10, 9, 0.08), rgba(10, 10, 9, 0.38)),
    url("/assets/stock/technical-hvac-corridor.jpg") center / cover no-repeat;
}

.technical-hero::after {
  content: "";
  position: absolute;
  inset: auto clamp(22px, 6vw, 92px) 54px auto;
  width: min(300px, 26vw);
  aspect-ratio: 1;
  border: 1px solid rgba(198, 168, 95, 0.4);
  border-left-color: rgba(198, 168, 95, 0.9);
  opacity: 0.62;
}

.technical-hero > * {
  position: relative;
  z-index: 1;
}

.technical-hero .overline {
  color: var(--gold);
  font-weight: 900;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.technical-hero h1 {
  max-width: 1030px;
  color: var(--white);
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.technical-hero p:not(.overline) {
  color: rgba(255, 255, 255, 0.86);
}

.technical-services-cards {
  position: relative;
  overflow: hidden;
  padding-top: clamp(86px, 9vw, 142px);
  padding-bottom: clamp(86px, 9vw, 142px);
  background:
    linear-gradient(90deg, rgba(246, 243, 238, 0.96), rgba(246, 243, 238, 0.78) 52%, rgba(246, 243, 238, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(232, 223, 209, 0.82)),
    url("/assets/stock/technical-industrial-ceiling.jpg") center / cover no-repeat;
  color: var(--ink);
}

.technical-services-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(198, 168, 95, 0.18) 42.2%, transparent 42.8%),
    linear-gradient(25deg, transparent 0 68%, rgba(255, 255, 255, 0.32) 68.2%, transparent 68.6%);
  opacity: 0.82;
  pointer-events: none;
}

.technical-services-cards > * {
  position: relative;
  z-index: 1;
}

.technical-services-cards .section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  margin-bottom: 38px;
}

.technical-services-cards .section-heading .overline {
  color: var(--gold);
  font-weight: 900;
}

.technical-services-cards .section-heading h2 {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.18;
}

.technical-services-cards .content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.technical-services-cards .content-panel {
  position: relative;
  min-height: 390px;
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(198, 168, 95, 0.34);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  box-shadow: 0 28px 80px rgba(34, 32, 29, 0.16);
}

.technical-services-cards .content-panel::before {
  content: "";
  display: block;
  width: 86px;
  height: 86px;
  margin-bottom: 32px;
  border: 1px solid rgba(198, 168, 95, 0.78);
  border-radius: 50%;
  background-color: rgba(246, 243, 238, 0.94);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 52px 52px;
  box-shadow: 0 18px 36px rgba(34, 32, 29, 0.12);
}

.technical-services-cards .content-panel::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 34px;
  width: 68px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.technical-services-cards .content-panel:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='10' y='18' width='44' height='18' rx='2' stroke='%2316243b' stroke-width='3'/%3E%3Cpath d='M16 26h32M16 36v8h32v-8' stroke='%23c6a85f' stroke-width='3' stroke-linecap='round'/%3E%3Ccircle cx='32' cy='27' r='6' stroke='%2316243b' stroke-width='3'/%3E%3Cpath d='M32 21v12M26 27h12' stroke='%23c6a85f' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.technical-services-cards .content-panel:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 13v15c0 6 4 10 10 10h8c6 0 10 4 10 10v3' stroke='%2316243b' stroke-width='3.2' stroke-linecap='round'/%3E%3Cpath d='M18 28h12M34 16l-7 14h9l-6 14' stroke='%23c6a85f' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M40 48h12M46 42v12' stroke='%2316243b' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.technical-services-cards .content-panel:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='13' y='12' width='34' height='40' rx='3' stroke='%2316243b' stroke-width='3'/%3E%3Cpath d='M22 23h16M22 32h16M22 41h10' stroke='%23c6a85f' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M41 45l5 5 9-12' stroke='%2316243b' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.technical-services-cards .content-panel h3 {
  color: var(--ink);
  font-size: clamp(28px, 2.4vw, 38px);
}

.technical-services-cards .content-panel p {
  color: rgba(30, 30, 29, 0.72);
  font-size: 18px;
  line-height: 1.72;
}

.work-hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding-bottom: clamp(72px, 8vw, 118px);
  background:
    linear-gradient(90deg, rgba(12, 12, 11, 0.58) 0%, rgba(12, 12, 11, 0.36) 42%, rgba(12, 12, 11, 0.08) 100%),
    linear-gradient(180deg, rgba(12, 12, 11, 0.04), rgba(12, 12, 11, 0.28)),
    url("/assets/home/work-hero-zen-garden.jpg") center / cover no-repeat;
  color: var(--white);
  border-bottom: 1px solid rgba(198, 168, 95, 0.28);
}

.work-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 0 54%, rgba(198, 168, 95, 0.18) 54.15%, transparent 54.65%),
    linear-gradient(22deg, transparent 0 34%, rgba(255, 255, 255, 0.14) 34.1%, transparent 34.5%);
  opacity: 0.34;
  pointer-events: none;
}

.work-hero::after {
  content: "";
  position: absolute;
  right: clamp(24px, 6vw, 92px);
  bottom: clamp(40px, 6vw, 88px);
  width: clamp(210px, 24vw, 360px);
  aspect-ratio: 1.38;
  border: 1px solid rgba(198, 168, 95, 0.46);
  box-shadow:
    -34px -28px 0 -32px rgba(198, 168, 95, 0.8),
    -68px 44px 0 -66px rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.work-hero > * {
  position: relative;
  z-index: 1;
}

.work-hero .overline {
  color: var(--gold);
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.58);
}

.work-hero h1 {
  max-width: 1120px;
  color: var(--white);
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.14;
}

.work-hero p:not(.overline) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.9fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  min-height: 88vh;
  padding: 150px clamp(20px, 6vw, 90px) 80px;
  background:
    linear-gradient(90deg, rgba(15, 15, 14, 0.86), rgba(15, 15, 14, 0.42)),
    url("/assets/home/home-office-render.jpg") center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.contact-hero__copy {
  max-width: 780px;
}

.contact-hero h1 {
  color: var(--white);
  font-size: clamp(56px, 7.6vw, 118px);
}

.contact-hero__copy > p:not(.overline) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.72;
}

.contact-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 34px;
  color: var(--gold);
  font-weight: 800;
}

.contact-hero__media {
  position: relative;
  min-height: clamp(460px, 44vw, 680px);
}

.contact-hero__media img {
  position: absolute;
  object-fit: cover;
  border: 1px solid rgba(198, 168, 95, 0.38);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.contact-hero__media .main {
  inset: 0 0 11% 8%;
  width: 82%;
  height: 78%;
}

.contact-hero__media .inset {
  right: 5%;
  bottom: 0;
  width: 50%;
  height: 34%;
}

.contact-experience {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.9fr);
  gap: 20px;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 90px);
  background:
    linear-gradient(180deg, rgba(246, 243, 238, 0.96), rgba(232, 223, 209, 0.86)),
    url("/assets/images/process-abstract.png") center / cover no-repeat;
}

.contact-form-panel {
  padding: clamp(30px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(198, 168, 95, 0.38);
  box-shadow: 0 24px 80px rgba(34, 32, 29, 0.12);
}

.contact-form-panel h2 {
  margin-bottom: 26px;
  font-size: clamp(34px, 4vw, 56px);
}

.process-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: end;
  padding: 170px clamp(20px, 6vw, 90px) 78px;
  background:
    linear-gradient(90deg, rgba(246, 243, 238, 0.98) 0%, rgba(246, 243, 238, 0.91) 44%, rgba(232, 223, 209, 0.62) 100%),
    linear-gradient(180deg, rgba(246, 243, 238, 0.78), rgba(246, 243, 238, 0.9)),
    url("/assets/home/home-hero-villa-render.jpg") right center / 62% auto no-repeat,
    url("/assets/images/process-abstract.png") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}

.process-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(112deg, transparent 0 46%, rgba(198, 168, 95, 0.18) 46.2%, transparent 46.8%),
    radial-gradient(circle at 74% 32%, rgba(198, 168, 95, 0.16), transparent 28%);
  opacity: 0.7;
  pointer-events: none;
}

.process-hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 54%;
  z-index: -1;
  border-left: 1px solid rgba(198, 168, 95, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(198, 168, 95, 0.1));
  opacity: 0.55;
  pointer-events: none;
}

.process-hero h1 {
  max-width: 760px;
  color: var(--ink);
}

.process-hero__copy > p:not(.overline) {
  max-width: 660px;
  color: var(--muted);
  font-size: 19px;
}

.process-hero__panel {
  padding: clamp(28px, 4vw, 46px);
  background: rgba(34, 32, 29, 0.92);
  color: var(--white);
  border: 1px solid rgba(198, 168, 95, 0.42);
  box-shadow: 0 24px 70px rgba(34, 32, 29, 0.16);
}

.process-hero__panel > p {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-hero__panel ol {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-hero__panel li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.process-hero__panel span {
  color: var(--gold);
  font-weight: 800;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.content-panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
}

.content-panel p,
.content-panel li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
}

.content-panel ul {
  padding-left: 20px;
}

.wide-panel {
  grid-column: span 2;
}

.services-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  min-height: min(880px, 100vh);
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.78), rgba(10, 10, 9, 0.28) 54%, rgba(10, 10, 9, 0.12)),
    radial-gradient(circle at 18% 42%, rgba(198, 168, 95, 0.2), transparent 34%);
}

.services-hero__media {
  position: absolute;
  inset: 0;
}

.services-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero__content {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 790px;
  padding: 170px clamp(24px, 5vw, 76px) 72px;
}

.services-hero__content .overline,
.services-capability .overline,
.services-cta .overline {
  color: var(--gold);
}

.services-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(50px, 5.6vw, 92px);
  line-height: 1.18;
  letter-spacing: 0;
}

.services-hero__content > p:not(.overline) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.75;
}

.services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button.light {
  color: var(--white);
}

.services-hero__panel {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
  width: min(390px, calc(100% - 48px));
  margin: 0 clamp(24px, 5vw, 76px) 72px 0;
  padding: 30px;
  border: 1px solid rgba(198, 168, 95, 0.5);
  background: rgba(12, 12, 11, 0.54);
  backdrop-filter: blur(18px);
}

.services-hero__panel span,
.service-card__icon,
.method-steps span {
  color: var(--gold);
}

.services-hero__panel span {
  display: block;
  margin-bottom: 54px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.services-hero__panel strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.28;
}

.services-hero__panel p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.services-showcase {
  padding: clamp(80px, 8vw, 132px) clamp(24px, 5vw, 88px);
  background:
    linear-gradient(180deg, var(--smoke), #f0e7da),
    var(--smoke);
}

.services-showcase__intro {
  display: grid;
  grid-template-columns: minmax(160px, 0.4fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  margin-bottom: 38px;
}

.services-showcase__intro h2,
.services-capability h2,
.services-method h2,
.services-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1.24;
  letter-spacing: 0;
}

.service-card-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  grid-auto-rows: minmax(330px, auto);
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  overflow: hidden;
  padding: 28px;
  color: var(--white);
  background: var(--charcoal);
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--service-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 700ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 10, 9, 0.14), rgba(10, 10, 9, 0.58)),
    linear-gradient(90deg, rgba(10, 10, 9, 0.22), rgba(10, 10, 9, 0.04));
}

.service-card:hover::before {
  transform: scale(1.08);
}

.service-card--large {
  grid-row: span 2;
  min-height: 738px;
}

.service-card--light {
  grid-column: span 2;
  color: var(--white);
  background: var(--charcoal);
}

.service-card--light::after {
  background:
    linear-gradient(180deg, rgba(10, 10, 9, 0.04), rgba(10, 10, 9, 0.46)),
    linear-gradient(90deg, rgba(10, 10, 9, 0.52), rgba(10, 10, 9, 0.18) 58%, rgba(10, 10, 9, 0.08)),
    linear-gradient(135deg, rgba(198, 168, 95, 0.16), transparent 52%);
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(198, 168, 95, 0.62);
  background: rgba(10, 10, 9, 0.34);
  backdrop-filter: blur(10px);
}

.service-card--light .service-card__icon {
  background: rgba(10, 10, 9, 0.34);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(27px, 2.5vw, 42px);
  line-height: 1.08;
}

.service-card p {
  max-width: 640px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.72;
}

.service-card--light p {
  color: rgba(255, 255, 255, 0.8);
}

.services-capability {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: center;
  padding: clamp(76px, 8vw, 132px) clamp(24px, 5vw, 88px);
  background: #11100e;
  color: var(--white);
}

.services-capability__image {
  position: relative;
  min-height: 640px;
}

.services-capability__image::before {
  content: "";
  position: absolute;
  inset: 34px -24px -34px 34px;
  border: 1px solid rgba(198, 168, 95, 0.38);
}

.services-capability__image img {
  position: relative;
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.services-capability__content {
  max-width: 760px;
}

.services-capability__content > p:not(.overline) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.85;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 32px 0;
  background: rgba(198, 168, 95, 0.34);
}

.capability-list span {
  padding: 18px;
  background: #171613;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.services-method {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 92px);
  padding: clamp(78px, 8vw, 132px) clamp(24px, 5vw, 88px);
  background:
    linear-gradient(90deg, rgba(246, 243, 238, 0.96), rgba(246, 243, 238, 0.74)),
    url('/assets/images/process-abstract.png') center / cover;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.method-steps article {
  min-height: 340px;
  padding: 28px;
  border: 1px solid rgba(157, 125, 50, 0.28);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 70px rgba(46, 38, 24, 0.08);
  backdrop-filter: blur(10px);
}

.method-steps span {
  display: block;
  margin-bottom: 90px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.method-steps h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.method-steps p {
  margin: 0;
  color: var(--muted);
}

.services-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: clamp(82px, 8vw, 140px) clamp(24px, 5vw, 88px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.42), rgba(10, 10, 9, 0.12)),
    url('/assets/home/home-villa2-exterior-night.jpg') center / cover;
}

.services-cta h2,
.services-cta p {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.services-cta p:not(.overline) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.seo-hero {
  background:
    linear-gradient(90deg, rgba(246, 243, 238, 0.98), rgba(246, 243, 238, 0.78)),
    url('/assets/home/home-hero-villa-render.jpg') right center / 62% auto no-repeat,
    url('/assets/images/process-abstract.png') center / cover no-repeat;
}

.seo-area-section {
  background:
    linear-gradient(180deg, rgba(246, 243, 238, 0.94), rgba(232, 223, 209, 0.78)),
    url('/assets/images/process-abstract.png') center / cover no-repeat;
}

.seo-location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.area-panel {
  min-height: 360px;
  padding: clamp(26px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(198, 168, 95, 0.34);
  box-shadow: 0 24px 70px rgba(34, 32, 29, 0.1);
  backdrop-filter: blur(12px);
}

.area-panel span {
  display: block;
  margin-bottom: 72px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.area-panel h3 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.18;
}

.area-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.work-categories {
  position: relative;
  overflow: hidden;
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(74px, 9vw, 118px);
  background:
    linear-gradient(180deg, rgba(246, 243, 238, 0.74), rgba(232, 223, 209, 0.62)),
    url("/assets/images/process-abstract.png") center / cover no-repeat;
}

.work-categories::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(24deg, transparent 0 32%, rgba(157, 125, 50, 0.2) 32.2%, transparent 32.8% 62%, rgba(157, 125, 50, 0.16) 62.2%, transparent 62.8%),
    linear-gradient(112deg, transparent 0 40%, rgba(157, 125, 50, 0.18) 40.2%, transparent 40.8%),
    linear-gradient(90deg, rgba(157, 125, 50, 0.2) 1px, transparent 1px),
    linear-gradient(180deg, rgba(157, 125, 50, 0.14) 1px, transparent 1px);
  background-size: 760px 520px, 620px 460px, 76px 76px, 76px 76px;
  opacity: 0.72;
  pointer-events: none;
}

.work-categories::after {
  content: "";
  position: absolute;
  inset: 5% 3% 8% 56%;
  border: 1px solid rgba(157, 125, 50, 0.26);
  border-left-width: 3px;
  box-shadow:
    -120px 90px 0 -118px rgba(157, 125, 50, 0.34),
    -260px 210px 0 -258px rgba(157, 125, 50, 0.28),
    64px 120px 0 -62px rgba(157, 125, 50, 0.28);
  transform: rotate(-7deg);
  pointer-events: none;
}

.work-categories .content-grid {
  position: relative;
  z-index: 2;
}

.work-categories .section-heading {
  position: relative;
  z-index: 2;
}

.work-categories .section-heading h2 {
  max-width: 860px;
}

.work-categories .content-panel {
  position: relative;
  min-height: 310px;
  padding: clamp(28px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(198, 168, 95, 0.36);
  box-shadow: 0 24px 70px rgba(34, 32, 29, 0.16);
}

.work-categories .content-panel::before {
  content: "";
  display: block;
  width: 88px;
  height: 88px;
  margin-bottom: 24px;
  border: 2px solid rgba(198, 168, 95, 0.8);
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 18px 38px rgba(34, 32, 29, 0.18);
}

.work-categories .content-panel:nth-child(1)::before {
  background-image: url("/assets/selected-projects/office-2101-aa1/reception.jpg");
}

.work-categories .content-panel:nth-child(2)::before {
  background-image: url("/assets/selected-projects/sundials-42/zen-garden.jpg");
}

.work-categories .content-panel:nth-child(3)::before {
  background-image: url("/assets/selected-projects/al-anbara-ph07/living-dining.jpg");
}

.work-categories .content-panel h3 {
  font-size: clamp(27px, 2.4vw, 38px);
}

.work-categories .content-panel p {
  max-width: 520px;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.92fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: end;
  min-height: 90vh;
  padding: 158px clamp(20px, 6vw, 90px) 86px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 15, 14, 0.92), rgba(15, 15, 14, 0.56) 48%, rgba(15, 15, 14, 0.22)),
    url("/assets/selected-projects/al-anbara-ph07/dsc04285-hero.jpg") center / cover no-repeat;
  color: var(--white);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(15, 15, 14, 0.42));
  pointer-events: none;
}

.about-hero__copy,
.about-hero__media {
  position: relative;
  z-index: 1;
}

.about-hero__copy {
  max-width: 760px;
}

.about-hero h1 {
  color: var(--white);
  line-height: 1.22;
}

.about-hero__copy > p:not(.overline) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.72;
}

.about-hero__media {
  align-self: center;
  padding-top: 54px;
}

.about-hero__media img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  border: 1px solid rgba(198, 168, 95, 0.36);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

.about-hero__note {
  position: absolute;
  right: -18px;
  bottom: 34px;
  width: min(320px, 72%);
  padding: 24px;
  background: rgba(246, 243, 238, 0.94);
  border-left: 4px solid var(--gold);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.about-hero__note span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-hero__note strong {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.18;
  font-weight: 400;
}

.about-editorial {
  display: grid;
  grid-template-columns: minmax(360px, 0.76fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: clamp(74px, 9vw, 128px) clamp(20px, 6vw, 90px);
  background:
    linear-gradient(180deg, rgba(246, 243, 238, 0.97), rgba(232, 223, 209, 0.84)),
    url("/assets/home/home-hero-villa-render.jpg") center / cover no-repeat;
}

.about-editorial__image {
  position: relative;
}

.about-editorial__image::before {
  content: "";
  position: absolute;
  inset: 28px -28px -28px 28px;
  border: 1px solid rgba(198, 168, 95, 0.42);
}

.about-editorial__image img {
  position: relative;
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(34, 32, 29, 0.18);
}

.about-editorial__copy {
  max-width: 860px;
}

.about-editorial__copy > p:not(.overline) {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.78;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 38px;
  background: rgba(198, 168, 95, 0.34);
  border: 1px solid rgba(198, 168, 95, 0.34);
}

.about-metrics article {
  min-height: 176px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.about-metrics span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
}

.about-metrics p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.about-standards {
  padding: clamp(74px, 9vw, 128px) clamp(20px, 6vw, 90px);
  background: var(--ink);
  color: var(--white);
}

.about-standards .section-heading h2 {
  max-width: 940px;
  color: var(--white);
}

.about-standard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.about-standard-grid article {
  min-height: 380px;
  display: grid;
  align-content: end;
  padding: 28px;
  border: 1px solid rgba(198, 168, 95, 0.32);
  background:
    linear-gradient(180deg, rgba(15, 15, 14, 0.12), rgba(15, 15, 14, 0.74)),
    url("/assets/selected-projects/al-khushkar-508/living-wide.jpg") center / cover no-repeat;
}

.about-standard-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(15, 15, 14, 0.12), rgba(15, 15, 14, 0.74)),
    url("/assets/selected-projects/office-401-aa1/club-lounge.jpg") center / cover no-repeat;
}

.about-standard-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(15, 15, 14, 0.10), rgba(15, 15, 14, 0.72)),
    url("/assets/selected-projects/sundials-42/pergola.jpg") center / cover no-repeat;
}

.about-standard-grid span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 86px;
  border: 1px solid rgba(198, 168, 95, 0.65);
  color: var(--gold);
  background: rgba(15, 15, 14, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.about-standard-grid h3 {
  color: var(--white);
  font-size: clamp(24px, 2.4vw, 34px);
}

.about-standard-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.65;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: end;
  min-height: 86vh;
  padding: 158px clamp(20px, 6vw, 90px) 86px;
  background:
    linear-gradient(90deg, rgba(15, 15, 14, 0.9), rgba(15, 15, 14, 0.38)),
    url("/assets/home/home-hero-villa-render.jpg") center / cover no-repeat;
  color: var(--white);
}

.blog-hero h1 {
  max-width: 920px;
  color: var(--white);
  line-height: 1.2;
}

.blog-hero__copy > p:not(.overline) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.72;
}

.blog-feature-card {
  display: block;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(198, 168, 95, 0.42);
  background: rgba(246, 243, 238, 0.94);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.blog-feature-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-feature-card h2 {
  font-size: clamp(34px, 3.8vw, 56px);
}

.blog-feature-card p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.blog-feature-card strong,
.blog-card strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-feature-card strong::after,
.blog-card strong::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
}

.blog-feature-card:hover strong::after,
.blog-card:hover strong::after {
  width: 52px;
}

.blog-index {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 6vw, 90px);
  background:
    linear-gradient(180deg, rgba(246, 243, 238, 0.98), rgba(232, 223, 209, 0.88)),
    url("/assets/images/process-abstract.png") center / cover no-repeat;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 38px;
}

.blog-card {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-rows: 210px auto;
  border: 1px solid rgba(198, 168, 95, 0.32);
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.blog-card::after {
  content: "Read article";
  position: absolute;
  top: 158px;
  left: 18px;
  z-index: 1;
  padding: 10px 14px;
  background: rgba(198, 168, 95, 0.94);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(34, 32, 29, 0.14);
}

.blog-card.feature {
  grid-column: span 2;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card span,
.blog-card h3,
.blog-card p,
.blog-card strong {
  margin-left: 26px;
  margin-right: 26px;
}

.blog-card span {
  display: block;
  margin-top: 26px;
  margin-bottom: 14px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: clamp(22px, 2vw, 30px);
}

.blog-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.blog-card strong {
  margin-bottom: 28px;
  align-self: end;
}

.blog-post-hero {
  min-height: 76vh;
  display: grid;
  align-content: end;
  padding: 158px clamp(20px, 6vw, 90px) 86px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 15, 14, 0.9), rgba(15, 15, 14, 0.42)),
    url("/assets/home/home-hero-villa-render.jpg") center / cover no-repeat;
}

.blog-post-hero.post-hero-office {
  background:
    linear-gradient(90deg, rgba(15, 15, 14, 0.9), rgba(15, 15, 14, 0.42)),
    url("/assets/home/home-office-render.jpg") center / cover no-repeat;
}

.blog-post-hero.post-hero-pool {
  background:
    linear-gradient(90deg, rgba(15, 15, 14, 0.9), rgba(15, 15, 14, 0.36)),
    url("/assets/home/home-villa-sundials33-pool.jpg") center / cover no-repeat;
}

.blog-post-hero.post-hero-maintenance {
  background:
    linear-gradient(90deg, rgba(15, 15, 14, 0.9), rgba(15, 15, 14, 0.42)),
    url("/assets/home/home-office-process.jpg") center / cover no-repeat;
}

.blog-post-hero h1 {
  max-width: 1030px;
  color: var(--white);
  line-height: 1.2;
}

.blog-back-link {
  width: fit-content;
  margin-bottom: 26px;
  padding: 10px 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-back-link::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: currentColor;
}

.blog-post-hero > p:not(.overline) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.72;
}

.blog-post-layout {
  padding-top: clamp(54px, 7vw, 92px);
}

.blog-article-wrap {
  display: block;
  padding: clamp(70px, 9vw, 128px) clamp(20px, 6vw, 90px);
  background:
    linear-gradient(180deg, rgba(246, 243, 238, 0.98), rgba(232, 223, 209, 0.86)),
    url("/assets/images/process-abstract.png") center / cover no-repeat;
}

.blog-article {
  max-width: 940px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(198, 168, 95, 0.3);
  box-shadow: 0 28px 90px rgba(17, 17, 15, 0.08);
}

.blog-article__header {
  padding: clamp(34px, 5vw, 64px);
}

.blog-article__header h2 {
  max-width: 960px;
}

.blog-article__header > p:not(.overline) {
  max-width: 800px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.74;
}

.blog-article__image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.blog-article__body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px) clamp(24px, 5vw, 64px) clamp(46px, 6vw, 76px);
  background: rgba(255, 255, 255, 0.92);
}

.blog-article__body section {
  padding: 0 0 clamp(28px, 4vw, 42px);
  margin: 0 0 clamp(28px, 4vw, 42px);
  background: transparent;
  border-bottom: 1px solid rgba(198, 168, 95, 0.26);
}

.blog-article__body section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.blog-article__body h3 {
  max-width: 680px;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.18;
}

.blog-article__body p {
  max-width: 690px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.8;
}

.blog-side-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: clamp(28px, 5vw, 72px);
  row-gap: 18px;
  align-items: end;
  max-width: 940px;
  margin: 34px auto 0;
  padding: clamp(34px, 5vw, 54px);
  background:
    linear-gradient(90deg, rgba(15, 15, 14, 0.94), rgba(15, 15, 14, 0.76)),
    url("/assets/home/home-office-render.jpg") center / cover no-repeat;
  border: 1px solid rgba(198, 168, 95, 0.38);
  color: var(--white);
}

.blog-side-panel h3 {
  grid-column: 1;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
}

.blog-side-panel p:not(.overline) {
  grid-column: 1;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.blog-side-panel .button {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  white-space: nowrap;
}

.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.media-split img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: 500 16px/1.4 var(--sans);
  padding: 14px;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-location {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(198, 168, 95, 0.34);
}

.contact-location__map {
  position: absolute;
  inset: 0;
}

.contact-location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-location__card {
  position: relative;
  z-index: 1;
  width: min(430px, calc(100% - 48px));
  margin: 24px;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(15, 15, 14, 0.9);
  color: var(--white);
  border: 1px solid rgba(198, 168, 95, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.contact-location__card h3 {
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
}

.contact-location__card p:not(.overline) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.72;
}

.contact-location__links {
  display: grid;
  gap: 8px;
  margin: 24px 0;
}

.contact-location__links a {
  color: var(--gold);
  font-weight: 700;
}

.contact-location .button.ghost {
  color: var(--white);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
    color: var(--white);
  }

  .site-header.is-scrolled .nav-toggle,
  .site-header.page-header .nav-toggle {
    color: var(--ink);
  }

  .nav {
    position: fixed;
    top: 84px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    background: var(--ink);
    color: var(--white);
  }

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

  .nav a {
    padding: 14px 0;
  }

  .intro-band,
  .founders,
  .contact-strip,
  .split-dark,
  .media-split,
  .process-hero,
  .home-process,
  .about-hero,
  .about-editorial,
  .blog-hero,
  .blog-article-wrap,
  .contact-hero,
  .contact-experience,
  .services-hero,
  .services-showcase__intro,
  .services-capability,
  .services-method,
  .services-cta {
    grid-template-columns: 1fr;
  }

  .services-hero {
    min-height: auto;
  }

  .services-hero__content {
    padding: 170px 28px 42px;
  }

  .services-hero__panel {
    justify-self: start;
    margin: 0 28px 46px;
  }

  .service-card-grid,
  .method-steps,
  .seo-location-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card--large {
    grid-column: span 2;
  }

  .services-capability__image,
  .services-capability__image img {
    min-height: 430px;
    height: 430px;
  }

  .home-process__media {
    min-height: 560px;
  }

  .home-process__steps article {
    grid-template-columns: 44px 1fr;
  }

  .home-process__steps p {
    grid-column: 2;
  }

  .founders-visual__image,
  .founders-visual__image img {
    min-height: 380px;
  }

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

  .project-card.feature,
  .project-card {
    min-height: 430px;
  }

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

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

  .timeline article {
    min-height: auto;
  }

  .process-detail .timeline article {
    min-height: 380px;
  }

  .about-hero__media img,
  .about-editorial__image img {
    min-height: 420px;
  }

  .about-metrics,
  .about-standard-grid,
  .blog-card-grid,
  .blog-article__body {
    grid-template-columns: 1fr;
  }

  .blog-card.feature {
    grid-column: span 1;
  }

  .blog-side-panel {
    position: relative;
    top: auto;
  }

  .timeline span {
    margin-bottom: 28px;
  }

  .service-rows a {
    grid-template-columns: 1fr;
  }

  .wide-panel {
    grid-column: span 1;
  }

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

  .nsia-footer {
    justify-self: stretch;
    justify-content: flex-start;
    text-align: left;
  }

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

  .project-modal__media {
    grid-template-rows: auto auto;
  }

  .project-modal__stage {
    min-height: 280px;
  }

  .project-modal__panel img,
  .project-modal__panel video {
    min-height: 280px;
    max-height: 340px;
  }

  .project-modal__arrow {
    width: 42px;
    height: 50px;
  }

  .project-modal__maximise span {
    display: none;
  }

  .project-modal.is-expanded .project-modal__stage {
    height: min(78vh, 720px);
  }

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

  .contact-location {
    min-height: 680px;
  }

  .contact-location__card {
    width: auto;
  }

  .contact-hero {
    min-height: auto;
    padding-top: 130px;
  }

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

  .contact-hero__media .main {
    inset: 0 0 18% 0;
    width: 78%;
    height: 68%;
  }

  .contact-hero__media .inset {
    right: 0;
    width: 62%;
    height: 36%;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 92vh;
    padding-top: 130px;
  }

  .contact-hero {
    padding: 168px 24px 0;
    gap: 28px;
  }

  .contact-hero h1 {
    font-size: 50px;
    line-height: 1.12;
  }

  .contact-hero__copy > p:not(.overline) {
    font-size: 18px;
    line-height: 1.62;
  }

  .contact-hero__links {
    display: grid;
    gap: 10px;
    margin-top: 26px;
  }

  .contact-hero__media {
    min-height: 470px;
  }

  .contact-hero__media .main {
    inset: 0 0 21% 0;
    width: 88%;
    height: 66%;
  }

  .contact-hero__media .inset {
    right: -8px;
    width: 70%;
    height: 34%;
  }

  .contact-experience {
    padding: 54px 24px;
  }

  .contact-form-panel {
    padding: 26px;
  }

  .contact-form-panel h2 {
    font-size: 38px;
  }

  .about-hero {
    min-height: auto;
    padding: 150px 24px 58px;
  }

  .about-hero h1 {
    font-size: 50px;
  }

  .about-hero__media {
    padding-top: 0;
  }

  .about-hero__note {
    right: 14px;
    bottom: 18px;
  }

  .about-editorial,
  .about-standards,
  .blog-article-wrap {
    padding: 58px 24px;
  }

  .blog-hero {
    min-height: auto;
    padding: 168px 24px 58px;
  }

  .blog-post-hero {
    min-height: auto;
    padding: 168px 24px 58px;
  }

  .blog-side-panel {
    grid-template-columns: 1fr;
  }

  .blog-side-panel .button {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .blog-hero h1 {
    font-size: 46px;
  }

  .blog-post-hero h1 {
    font-size: 46px;
  }

  .blog-index {
    padding: 58px 24px;
  }

  .services-hero h1,
  .services-showcase__intro h2,
  .services-capability h2,
  .services-method h2,
  .services-cta h2 {
    font-size: 42px;
  }

  .services-hero__actions {
    display: grid;
  }

  .service-card-grid,
  .method-steps,
  .capability-list,
  .seo-location-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card--large {
    grid-column: span 1;
    min-height: 420px;
  }

  .services-capability__image::before {
    inset: 18px -10px -18px 18px;
  }

  .method-steps span {
    margin-bottom: 44px;
  }

  .area-panel {
    min-height: auto;
  }

  .area-panel span {
    margin-bottom: 36px;
  }

  .blog-card {
    min-height: auto;
    grid-template-rows: 220px auto;
  }

  .about-editorial__image::before {
    inset: 16px -10px -16px 16px;
  }

  .brand {
    width: 142px;
  }

  .section-heading {
    display: block;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-modal,
  .project-modal__backdrop,
  .project-modal__panel,
  .project-modal__panel img,
  .project-modal__panel video {
    transition: none;
  }

  .project-modal__panel,
  .project-modal__panel img,
  .project-modal__panel video {
    transform: none;
  }
}
