:root {
  --ink: #111820;
  --navy: #062b61;
  --green: #008f6c;
  --muted: #626970;
  --line: #d8d8d8;
  --soft: #f4f5f6;
  --white: #fff;
  --page: min(94vw, 1680px);
  --header-h: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 9px 14px;
  color: #fff;
  background: #000;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute !important;
  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;
  z-index: 80;
  top: 0; left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding: 0 clamp(28px, 5.8vw, 112px);
  color: #fff;
  transition: height .35s ease, color .35s ease, background .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  height: 78px;
  color: var(--ink);
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 0 rgba(0,0,0,.1);
}
.menu-trigger {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
}
.menu-lines { display: grid; gap: 7px; width: 38px; }
.menu-lines i { display: block; height: 1px; background: currentColor; transition: width .2s ease; }
.menu-lines i:first-child { width: 28px; }
.menu-lines i:last-child { width: 38px; }
.menu-trigger:hover .menu-lines i:first-child { width: 38px; }

.wordmark { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; }
.wordmark span { font-size: clamp(25px, 2.15vw, 42px); font-weight: 300; letter-spacing: .21em; }
.wordmark small { margin-top: 8px; color: #009775; font-size: 8px; font-weight: 600; letter-spacing: .78em; text-indent: .78em; }
.wordmark--header { justify-self: center; }
.wordmark--header small { color: currentColor; opacity: .85; }
.brand-logo { display: flex; align-items: center; justify-content: center; }
.brand-logo img { width: auto; object-fit: contain; }
.brand-logo--header { justify-self: center; height: 90px; overflow: hidden; }
.brand-logo--header img { height: 82px; }
.site-header.is-scrolled .brand-logo--header { height: 72px; }
.site-header.is-scrolled .brand-logo--header img { height: 68px; }
.header-contact { justify-self: end; font-size: 13px; letter-spacing: .16em; }

.menu-overlay {
  position: fixed;
  z-index: 89;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .35s ease;
}
.menu-overlay.is-visible { opacity: 1; }
.side-menu {
  position: fixed;
  z-index: 90;
  top: 0; left: 0;
  display: flex;
  width: min(475px, 91vw);
  height: 100dvh;
  overflow: visible;
  color: #242b32;
  background: #fff;
  transform: translateX(-102%);
  transition: transform .52s cubic-bezier(.77,0,.18,1);
  box-shadow: 20px 0 70px rgba(0,0,0,.12);
}
.side-menu.is-open { transform: translateX(0); }
.menu-main-pane {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: #fff;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-main-pane::-webkit-scrollbar, .service-submenu::-webkit-scrollbar { display: none; width: 0; height: 0; }
.menu-close {
  position: absolute;
  z-index: 2;
  top: 28px; right: 28px;
  width: 34px; height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-close span { position: absolute; top: 16px; left: 1px; width: 31px; height: 1px; background: #111; }
.menu-close span:first-child { transform: rotate(45deg); }
.menu-close span:last-child { transform: rotate(-45deg); }
.primary-menu { padding: 126px 34px 72px 50px; }
.primary-menu > a, .menu-service-row > a {
  display: flex;
  align-items: center;
  min-height: 68px;
  font-size: 19px;
  font-weight: 300;
}
.primary-menu a[aria-current="page"] { color: var(--green); }
.menu-service-row { display: grid; grid-template-columns: 1fr 68px; align-items: stretch; }
.services-menu-toggle { display: grid; place-items: center; border: 0; color: #16283d; background: transparent; cursor: pointer; }
.services-menu-toggle b { font-size: 33px; font-weight: 200; transition: transform .25s ease, color .25s; }
.services-menu-toggle:hover b, .services-menu-toggle[aria-expanded="true"] b { color: var(--green); transform: translateX(5px); }
.menu-service-row.is-current > a { color: var(--green); }
.menu-contact {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding: 32px 50px 38px;
  background: #f2f2f2;
}
.menu-contact span { margin-bottom: 5px; color: var(--green); font-size: 9px; font-weight: 600; letter-spacing: .19em; }
.menu-contact a { width: max-content; font-size: 13px; }
.service-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  display: flex;
  flex-direction: column;
  width: min(420px, calc(100vw - 475px));
  min-width: 340px;
  height: 100%;
  overflow-y: auto;
  padding: 72px 48px 44px;
  color: #fff;
  background: #050607;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-26px);
  transition: opacity .35s ease, transform .45s cubic-bezier(.77,0,.18,1), visibility 0s linear .45s;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.service-submenu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s;
}
.service-submenu > p { margin: 22px 0 30px; color: #66d2b7; font-size: 9px; font-weight: 600; letter-spacing: .2em; }
.service-submenu nav { display: grid; }
.service-submenu nav a { display: grid; grid-template-columns: 35px 1fr; gap: 14px; align-items: center; min-height: 66px; border-bottom: 1px solid rgba(255,255,255,.13); font-size: 16px; font-weight: 300; line-height: 1.35; transition: color .25s, padding-left .25s; }
.service-submenu nav a span { color: #66d2b7; font-size: 8px; letter-spacing: .15em; }
.service-submenu nav a:hover { padding-left: 7px; color: #66d2b7; }
.service-submenu__back { display: inline-flex; gap: 12px; align-items: center; width: max-content; border: 0; color: #fff; background: transparent; font-size: 10px; letter-spacing: .15em; cursor: pointer; }
.service-submenu__back span { color: #66d2b7; font-size: 20px; }
.service-submenu__all { display: flex; justify-content: space-between; margin-top: auto; padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,.22); color: #66d2b7; font-size: 10px; letter-spacing: .14em; }

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: #071b37;
}
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.29), rgba(0,0,0,.04) 40%, rgba(0,0,0,.12)); pointer-events: none; }
.scroll-cue { position: absolute; bottom: 27px; left: 50%; width: 1px; height: 48px; overflow: hidden; background: rgba(255,255,255,.35); }
.scroll-cue span { display: block; width: 1px; height: 22px; background: #fff; animation: scrollCue 2s ease infinite; }
@keyframes scrollCue { 0% { transform: translateY(-24px); } 100% { transform: translateY(52px); } }

.editorial-section { width: var(--page); margin: 0 auto; padding: clamp(74px, 7vw, 132px) 0; }
.about { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(48px, 6vw, 112px); align-items: center; }
.about-image { height: clamp(510px, 42vw, 700px); overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-copy { max-width: 690px; }
.eyebrow { margin: 0 0 13px; color: var(--green); font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
.about-copy h1, .section-heading h2 {
  margin-bottom: 26px;
  font-size: clamp(27px, 2vw, 38px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: .15em;
}
.about-copy p:not(.eyebrow) { max-width: 650px; margin-bottom: 22px; color: #3f464c; font-size: clamp(15px, 1.05vw, 18px); line-height: 1.9; }
.outline-link {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  margin-top: 11px;
  padding: 14px 22px;
  border: 1px solid #777;
  font-size: 13px;
  letter-spacing: .08em;
  transition: color .25s, background .25s;
}
.outline-link:hover { color: #fff; background: var(--ink); }

.section-block { padding: clamp(72px, 7vw, 126px) 0; }
.section-heading { width: min(890px, 88vw); margin: 0 auto clamp(44px, 4.5vw, 74px); text-align: center; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading > p:last-child { margin: 0 auto; color: #50575d; font-size: clamp(14px, 1.05vw, 18px); line-height: 1.8; }

.projects { padding-bottom: 0; background: #f7f7f7; }
.project-slider { position: relative; width: calc(100% - 28px); max-width: 1870px; margin: 0 auto; overflow: hidden; background: #111; }
.project-track { position: relative; aspect-ratio: 2.15 / 1; min-height: 480px; }
.project-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .7s ease, visibility .7s ease; }
.project-slide.is-active { opacity: 1; visibility: visible; }
.project-slide > img { width: 100%; height: 100%; object-fit: cover; }
.campaign-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1,15,35,.34), transparent 58%);
  pointer-events: none;
}
.campaign-slide--right::after { background: linear-gradient(270deg, rgba(0,0,0,.45), transparent 62%); }
.campaign-content {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: clamp(70px, 8vw, 150px);
  width: min(500px, 38vw);
  color: #fff;
  transform: translateY(-50%);
}
.campaign-slide--right .campaign-content { right: clamp(70px, 8vw, 150px); left: auto; }
.campaign-logo {
  display: grid;
  place-items: center;
  width: 110px;
  height: 92px;
  margin-bottom: 23px;
  padding: 7px;
  background: #fff;
}
.campaign-logo img { width: 100%; height: 100%; object-fit: contain; }
.campaign-content > p { margin-bottom: 12px; color: #54c5a8; font-size: 11px; font-weight: 600; letter-spacing: .22em; }
.campaign-content h3 {
  margin-bottom: 18px;
  font-size: clamp(25px, 2.45vw, 46px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: .055em;
}
.campaign-content > span:not(.campaign-logo) { display: block; max-width: 490px; font-size: clamp(13px, 1vw, 17px); line-height: 1.8; }
.campaign-content > a {
  display: inline-block;
  margin-top: 23px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.65);
  font-size: 11px;
  letter-spacing: .13em;
}
.round-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  padding: 0 0 5px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(4,27,40,.55);
  font: 300 42px/1 Arial;
  transform: translateY(-50%);
  cursor: pointer;
}
.slider-prev { left: 22px; }
.slider-next { right: 22px; }
.slider-dots { position: absolute; z-index: 2; right: 28px; bottom: 23px; display: flex; gap: 10px; }
.slider-dots button { width: 9px; height: 9px; padding: 0; border: 1px solid #fff; border-radius: 50%; background: transparent; cursor: pointer; }
.slider-dots button.is-active { background: #fff; }

.locations { background: #fff; }
.property-search {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) 68px;
  width: min(820px, 90vw);
  margin: -26px auto 46px;
  border: 1px solid #a9adb1;
  background: #fff;
}
.property-search select {
  width: 100%;
  height: 58px;
  padding: 0 50px 0 22px;
  border: 0;
  border-right: 1px solid #c5c8ca;
  border-radius: 0;
  color: #22292f;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='m1 1 6 6 6-6' fill='none' stroke='%2322292f' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 22px center;
  appearance: none;
  cursor: pointer;
}
.property-search select:hover { background-color: #f8f9f9; }
.property-search select:focus { position: relative; z-index: 1; outline: 2px solid var(--green); outline-offset: -2px; }
.property-search button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  border: 0;
  color: #fff;
  background: #9ea2a5;
  cursor: pointer;
  transition: background .25s ease;
}
.property-search button:hover { background: var(--navy); }
.property-search button span { display: none; font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.property-search svg { flex: 0 0 auto; width: 24px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.location-viewport { width: calc(100% - 44px); margin: 0 auto; overflow-x: auto; scrollbar-width: none; cursor: grab; }
.location-viewport::-webkit-scrollbar, .review-row::-webkit-scrollbar { display: none; }
.location-track { display: flex; gap: 26px; width: max-content; }
.location-card { width: min(31.5vw, 540px); min-width: 350px; text-align: center; }
.location-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.location-card h3 { margin: 14px 0 0; font-size: clamp(18px, 1.35vw, 24px); font-weight: 300; }
.location-card.is-filtered { opacity: .18; }

.services { background: #fafafa; }
.service-carousel { width: var(--page); margin: 0 auto; }
.service-viewport { overflow: hidden; touch-action: pan-y; cursor: grab; }
.service-viewport.is-dragging { cursor: grabbing; }
.service-viewport.is-dragging .service-track { transition: none; }
.service-track { display: flex; gap: 28px; transition: transform .62s cubic-bezier(.25,.8,.25,1); will-change: transform; }
.service-card { flex: 0 0 calc((100% - 56px) / 3); min-width: 0; background: #fff; }
.service-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.service-card > div { position: relative; min-height: 170px; padding: 28px 32px 32px 64px; }
.service-card span { position: absolute; top: 31px; left: 25px; color: #9ba0a4; font-size: 11px; }
.service-card h3 { margin-bottom: 12px; font-size: clamp(17px, 1.25vw, 23px); font-weight: 400; line-height: 1.35; letter-spacing: .02em; }
.service-card p { margin: 0; color: #626970; font-size: 14px; line-height: 1.7; }
.carousel-controls { display: grid; grid-template-columns: auto minmax(140px, 340px) auto; gap: 24px; align-items: center; justify-content: center; margin-top: 36px; }
.line-arrow { padding: 6px; border: 0; background: transparent; font-size: 26px; cursor: pointer; }
.carousel-progress { height: 1px; background: #ccc; }
.carousel-progress i { display: block; width: 16.66%; height: 2px; background: var(--ink); transition: transform .5s ease; transform-origin: left; }

.insights { background: #f3f4f5; }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; width: var(--page); margin: 0 auto; }
.insight-card { display: flex; flex-direction: column; background: #fff; }
.insight-card img { width: 100%; aspect-ratio: 1.55 / 1; object-fit: cover; }
.insight-card > div { display: flex; flex: 1; flex-direction: column; min-height: 310px; padding: 38px 38px 34px; }
.card-kicker { margin-bottom: 14px; color: var(--green); font-size: 10px; font-weight: 600; letter-spacing: .18em; }
.insight-card h3 { margin-bottom: 16px; font-size: clamp(18px, 1.25vw, 23px); font-weight: 400; line-height: 1.45; }
.insight-card > div > p:not(.card-kicker) { color: #555d63; font-size: 14px; line-height: 1.85; }
.insight-card a { display: flex; align-items: center; gap: 20px; margin-top: auto; font-size: 13px; letter-spacing: .07em; }
.insight-card a span { font-size: 23px; }

.values { color: #fff; background: #092850; }
.section-heading--light h2, .section-heading--light > p:last-child { color: #fff; }
.review-row { display: flex; gap: 24px; width: min(92vw, 1460px); margin: 0 auto; overflow-x: auto; scrollbar-width: none; cursor: grab; }
.review-card { flex: 1 0 360px; min-height: 230px; padding: 32px; color: var(--ink); background: #fff; box-shadow: 0 15px 45px rgba(0,0,0,.15); }
.review-head { display: grid; grid-template-columns: 44px 1fr auto; gap: 13px; align-items: center; }
.review-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: #fff; background: var(--navy); font-size: 20px; font-weight: 500; }
.review-head strong, .review-head small { display: block; }
.review-head strong { font-weight: 500; }
.review-head small { color: #7a8085; font-size: 10px; }
.value-stars { color: #f5b400; font-size: 13px; letter-spacing: 1px; }
.review-card > p { margin: 27px 0 0; color: #4e555b; font-size: 14px; line-height: 1.9; }

.clients { background: #fff; }
.client-placeholder {
  display: grid;
  place-items: center;
  min-height: 250px;
  width: min(88vw, 1160px);
  margin: 0 auto;
  padding: 50px;
  border: 1px solid #d9dde0;
  text-align: center;
}
.client-placeholder span { color: var(--navy); font-size: clamp(24px, 3vw, 48px); font-weight: 300; letter-spacing: .2em; text-indent: .2em; }
.client-placeholder p { margin: 14px 0 0; color: #676e74; font-size: 14px; }

.footer { padding: 54px min(7vw, 120px) 28px; color: #fff; background: #020202; }
.wordmark--footer { display: flex; width: max-content; margin: 0 auto 48px; }
.wordmark--footer span { font-size: clamp(29px, 2.7vw, 48px); }
.brand-logo--footer { width: min(290px, 65vw); margin: 0 auto 48px; }
.brand-logo--footer img { width: 100%; height: auto; }
.footer-grid { display: grid; grid-template-columns: .95fr 1.35fr .95fr .85fr; gap: clamp(34px, 4vw, 74px); padding-bottom: 34px; border-bottom: 1px solid #777; }
.footer h2 { display: inline-block; margin: 0 0 22px; padding-bottom: 6px; border-bottom: 1px solid #ad9856; font-size: 15px; font-weight: 500; }
.footer-grid p, .footer-grid a { display: block; margin: 0; color: #f1f1f1; font-size: 14px; line-height: 2.05; }
.footer-grid a:hover { color: #74c7b1; }
.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(115px, 1fr));
  gap: 4px 26px;
}
.footer-link-grid a { line-height: 1.65; }
.footer-contact { padding: 20px 0; border-bottom: 1px solid #777; text-align: center; }
.footer-contact > a { margin: 0 14px; font-size: 15px; font-weight: 500; }
.footer-contact p { max-width: 780px; margin: 10px auto; color: #ddd; font-size: 13px; }
.socials { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }
.socials a { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: #000; background: #fff; font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 25px; color: #d0d0d0; font-size: 12px; }

.legal-page { min-height: 100vh; background: #f5f6f7; }
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 102px;
  padding: 20px clamp(24px, 7vw, 120px);
  color: #fff;
  background: #071e42;
}
.legal-wordmark span { font-size: clamp(22px, 2.1vw, 34px); }
.legal-home { font-size: 11px; letter-spacing: .12em; }
.legal-main {
  width: min(1100px, 88vw);
  min-height: calc(100vh - 202px);
  margin: 0 auto;
  padding: clamp(150px, 14vw, 210px) 0 clamp(74px, 9vw, 130px);
}
.legal-main > h1 { margin-bottom: 42px; font-size: clamp(34px, 4.8vw, 68px); font-weight: 300; line-height: 1.2; letter-spacing: .08em; }
.legal-notice { max-width: 860px; padding: clamp(28px, 4vw, 52px); border: 1px solid #d4d8dc; background: #fff; }
.legal-notice h2, .sitemap-grid h2 { margin-bottom: 18px; font-size: 18px; font-weight: 500; }
.legal-notice p { margin-bottom: 14px; color: #545c63; }
.legal-notice section { padding: 26px 0; border-bottom: 1px solid #e0e3e5; }
.legal-notice section:last-child { border-bottom: 0; }
.legal-notice .legal-updated { margin-bottom: 8px; color: var(--green); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.legal-notice a { color: var(--green); }
.sitemap-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 50px; max-width: 760px; padding: clamp(28px, 4vw, 52px); background: #fff; }
.sitemap-grid a { display: block; padding: 5px 0; color: #4d555c; }
.sitemap-grid a:hover { color: var(--green); }
.legal-footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px clamp(24px, 7vw, 120px); color: #ddd; background: #020202; font-size: 12px; }

:focus-visible { outline: 2px solid #00a980; outline-offset: 4px; }

@media (max-width: 1024px) {
  :root { --page: 92vw; --header-h: 82px; }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about-image { height: min(70vw, 650px); }
  .about-copy { max-width: 760px; }
  .project-track { aspect-ratio: 16 / 8.7; min-height: 420px; }
  .service-card { flex-basis: calc((100% - 28px) / 2); }
  .insight-grid { gap: 22px; }
  .insight-card > div { padding: 28px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 7vw; }
}

@media (max-width: 760px) {
  :root { --header-h: 72px; }
  body { font-size: 15px; }
  .site-header { padding: 0 18px; }
  .site-header.is-scrolled { height: 66px; }
  .menu-trigger > span:first-child, .header-contact { display: none; }
  .menu-lines { width: 31px; gap: 6px; }
  .menu-lines i:first-child { width: 22px; }
  .menu-lines i:last-child { width: 31px; }
  .wordmark--header span { font-size: 22px; letter-spacing: .16em; }
  .wordmark--header small { margin-top: 5px; font-size: 6px; }
  .brand-logo--header { height: 66px; }
  .brand-logo--header img, .site-header.is-scrolled .brand-logo--header img { height: 58px; }
  .site-header.is-scrolled .brand-logo--header { height: 62px; }
  .side-menu {
    width: 100vw;
    max-width: none;
    height: 100dvh;
    overflow: hidden;
    box-shadow: none;
  }
  .menu-main-pane { width: 100vw; }
  .primary-menu { padding: 92px 26px 28px; }
  .primary-menu > a, .menu-service-row > a { min-height: 52px; font-size: 15px; }
  .menu-service-row { grid-template-columns: 1fr 52px; }
  .services-menu-toggle b { font-size: 27px; }
  .menu-contact { padding: 26px; }
  .service-submenu {
    inset: 0;
    width: 100vw;
    min-width: 0;
    height: 100dvh;
    padding: max(34px, env(safe-area-inset-top)) max(26px, env(safe-area-inset-right)) max(30px, env(safe-area-inset-bottom)) max(26px, env(safe-area-inset-left));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
  }
  .service-submenu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  .service-submenu > p { margin-top: 36px; }
  .service-submenu nav a { min-height: 58px; font-size: 14px; }
  .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: var(--hero-video-ratio, 16 / 9);
  }
  .hero-video { width: 100%; height: 100%; object-fit: contain; }
  .hero-shade { background: linear-gradient(180deg, rgba(0,0,0,.22), transparent 35%, rgba(0,0,0,.08)); }
  .scroll-cue { display: none; }
  .editorial-section, .section-block { padding: 68px 0; }
  .about { width: 100%; gap: 40px; }
  .about-copy { order: 1; }
  .about-image { order: 2; }
  .about-image { height: auto; }
  .about-image img { aspect-ratio: 1 / .78; object-fit: cover;object-position: top; }
  .about-copy { width: 88vw; margin: 0 auto; }
  .about-copy h1, .section-heading h2 { font-size: 25px; letter-spacing: .1em; }
  .about-copy p:not(.eyebrow) { font-size: 14px; line-height: 1.85; }
  .projects { padding-bottom: 0; }
  .project-slider { width: 100%; }
  .project-track { aspect-ratio: auto; min-height: 300px; height: 55vw; }
  .campaign-slider .project-track { height: 580px; }
  .campaign-slide > img { object-position: 64% center; }
  .campaign-slide--right > img { object-position: 42% center; }
  .campaign-slide::after, .campaign-slide--right::after { background: linear-gradient(0deg, rgba(0,12,28,.92) 0%, rgba(0,12,28,.28) 62%, rgba(0,0,0,.05) 100%); }
  .campaign-content, .campaign-slide--right .campaign-content {
    top: auto;
    right: 25px;
    bottom: 48px;
    left: 25px;
    width: auto;
    transform: none;
  }
  .campaign-logo { width: 82px; height: 69px; margin-bottom: 16px; padding: 5px; }
  .campaign-content > p { margin-bottom: 9px; font-size: 9px; }
  .campaign-content h3 { margin-bottom: 12px; font-size: 25px; }
  .campaign-content > span:not(.campaign-logo) { font-size: 12px; line-height: 1.65; }
  .campaign-content > a { margin-top: 16px; font-size: 9px; }
  .round-arrow { width: 42px; height: 42px; font-size: 30px; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
  .slider-dots { right: 15px; bottom: 13px; gap: 7px; }
  .property-search {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 88vw;
    margin-top: -12px;
    border: 0;
    background: transparent;
  }
  .property-search select {
    display: block;
    width: 100%;
    height: 56px;
    border: 1px solid #a9adb1;
    background-position: right 20px center;
  }
  .property-search select + select { display: block; }
  .property-search button { min-height: 54px; }
  .property-search button span { display: inline; }
  .location-viewport { width: 100%; padding-left: 6vw; }
  .location-track { padding-right: 6vw; gap: 16px; }
  .location-card { width: 82vw; min-width: 82vw; }
  .service-carousel { width: 100%; }
  .service-viewport { padding-left: 6vw; }
  .service-track { gap: 16px; }
  .service-card { flex-basis: 86vw; }
  .service-card > div { min-height: 160px; padding: 24px 24px 28px 55px; }
  .service-card span { top: 26px; left: 20px; }
  .carousel-controls { grid-template-columns: auto minmax(100px, 190px) auto; }
  .insight-grid { grid-template-columns: 1fr; width: 88vw; }
  .insight-card > div { min-height: 260px; }
  .review-row { width: 100%; padding: 0 6vw; }
  .review-card { flex-basis: 85vw; min-height: 245px; }
  .review-head { grid-template-columns: 42px 1fr; }
  .value-stars { grid-column: 2; }
  .footer { padding: 45px 7vw 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px 20px; }
  .footer-contact > a { display: block; margin: 5px 0; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .client-placeholder { min-height: 220px; padding: 36px 22px; }
  .client-placeholder span { font-size: 23px; }
  .legal-header { min-height: 82px; }
  .legal-home { font-size: 9px; }
  .legal-main { min-height: calc(100vh - 180px); }
  .sitemap-grid { grid-template-columns: 1fr; gap: 32px; }
  .legal-footer { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 430px) {
  .project-track { height: 63vw; min-height: 250px; }
  .project-slide img { object-fit: cover; }
  .review-card { flex-basis: 88vw; }
}

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