:root {
  --font-manrope: 'Manrope';
  --night: #090b09;
  --night-soft: #121510;
  --taupe: #d3cdc1;
  --taupe-deep: #beb6a8;
  --bone: #eee9df;
  --bone-deep: #d8d1c4;
  --paper: #f5f1e9;
  --ink: #11130f;
  --muted: #6f756c;
  --line: rgba(17, 19, 15, 0.18);
  --line-light: rgba(17, 19, 15, 0.18);
  --signal: #c7ff00;
  --signal-dark: #9fca00;
  --white: #fff;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-manrope), Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--signal);
  color: var(--night);
}

.section-label {
  color: currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-label--muted {
  color: rgba(17, 19, 15, 0.52);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.25fr) minmax(0, 1fr) minmax(220px, 0.3fr);
  gap: 5vw;
}

/* Header */
.jag-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  min-height: 132px;
  padding: 14px 3vw;
  border-bottom: 1px solid var(--line);
  background: var(--bone);
}

.jag-header--dark {
  position: absolute;
  inset: 0 0 auto;
  color: var(--ink);
  border-color: var(--line);
  background: var(--taupe);
}

.jag-brand {
  width: 154px;
}

.jag-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) saturate(100%) contrast(1.18);
}

.jag-header--dark .jag-brand img {
  filter: brightness(0) saturate(100%) contrast(1.18);
}

.jag-header nav {
  position: relative;
  display: flex;
  gap: clamp(22px, 2.5vw, 48px);
  align-items: center;
  justify-content: center;
}

.jag-header nav a,
.jag-header__cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.jag-header nav a {
  position: relative;
}

.jag-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--signal);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.jag-header nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.jag-header__cta {
  position: absolute;
  right: 0;
}

.jag-header__cta span {
  margin-left: 12px;
  color: var(--signal);
}

.jag-header--dark .jag-header__cta span {
  color: var(--signal);
}

/* Home hero */
.build-hero {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  background: var(--taupe);
}

.build-hero__grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.42fr) minmax(520px, 0.58fr);
  min-height: calc(100svh - 200px);
  border-bottom: 1px solid rgba(17, 19, 15, 0.24);
}

.build-hero__media {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(28px, 4vw, 72px) 3vw;
  background: var(--bone-deep);
}

.build-hero__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  animation: image-in 1.2s cubic-bezier(.2,.75,.2,1) both;
}

.build-hero__media figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.build-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(65px, 7vw, 120px) 4vw clamp(55px, 6vw, 95px) 3vw;
}

.build-hero__eyebrow {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: clamp(35px, 4vw, 62px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.build-hero__eyebrow::before {
  width: 38px;
  height: 2px;
  background: var(--signal);
  content: '';
}

.build-hero__eyebrow span {
  color: rgba(17, 19, 15, 0.52);
}

.build-hero h1 {
  max-width: 690px;
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: clamp(58px, 6.2vw, 104px);
  font-weight: 470;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.build-hero h1 span {
  display: block;
  color: var(--ink);
  font-style: normal;
  font-weight: 520;
}

.build-hero__content > p:not(.build-hero__eyebrow) {
  max-width: 570px;
  margin-top: clamp(45px, 5vw, 75px);
  padding-top: 20px;
  border-top: 1px solid rgba(17, 19, 15, 0.28);
  font-size: 15px;
  line-height: 1.72;
}

.build-hero__content > a {
  align-self: flex-start;
  margin-top: 34px;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.build-hero__content > a span {
  margin-left: 10px;
  color: var(--signal);
}

.build-hero__project {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: 35px 2vw 45px;
  color: var(--ink);
  background: var(--taupe-deep);
}

.build-hero__project span,
.build-hero__project small {
  display: block;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.build-hero__project strong {
  display: block;
  margin: 16px 0 7px;
  font-size: 25px;
  font-weight: 500;
}

.build-hero__project small {
  color: var(--muted);
}

.build-hero__project a {
  margin-top: 40px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.build-hero__project a i {
  margin-left: 8px;
  color: var(--signal);
  font-style: normal;
}

.build-hero__scope {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--ink);
  background: var(--signal);
}

.build-hero__scope > a {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 3vw;
  border-right: 1px solid rgba(17, 19, 15, 0.2);
  font-size: 9px;
  font-weight: 680;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.build-hero__scope > a::before {
  margin-right: 12px;
  color: var(--night);
  content: '+';
}

.build-hero__scope > a > span {
  margin-left: auto;
  font-size: 13px;
  transition: transform 180ms ease;
}

.build-hero__scope > a:hover > span {
  transform: translate(3px, -3px);
}

/* Compact home */
.home-intro {
  display: grid;
  grid-template-columns: minmax(130px, 0.2fr) minmax(0, 1fr) minmax(270px, 0.34fr);
  gap: 5vw;
  align-items: start;
  padding: clamp(95px, 10vw, 150px) 3vw;
  background: var(--bone);
}

.home-intro h2,
.home-services h2,
.home-gateway h2 {
  font-family: var(--font-manrope), Arial, sans-serif;
  font-style: normal;
  font-weight: 550;
  letter-spacing: -0.045em;
}

.home-intro h2 {
  max-width: 930px;
  font-size: clamp(49px, 5.8vw, 94px);
  line-height: 0.94;
}

.home-intro > div {
  padding-top: 6px;
}

.home-intro > div > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.74;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--signal);
}

.home-services {
  padding: clamp(95px, 10vw, 150px) 3vw 1px;
  background: var(--taupe-deep);
}

.home-services__heading {
  display: grid;
  grid-template-columns: minmax(130px, 0.2fr) minmax(0, 1fr) auto;
  gap: 5vw;
  align-items: end;
  padding-bottom: clamp(65px, 7vw, 105px);
}

.home-services__heading h2 {
  max-width: 900px;
  font-size: clamp(49px, 5.8vw, 94px);
  line-height: 0.94;
}

.home-services__heading .text-link {
  margin-top: 0;
  white-space: nowrap;
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 -3vw;
  border-top: 1px solid var(--line);
}

.home-services__grid > a {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 34px 3vw 38px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease;
}

.home-services__grid > a:hover {
  background: rgba(199, 255, 0, 0.18);
}

.home-services__grid > a > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.home-services__grid h3 {
  margin-top: 60px;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.home-services__grid p {
  margin-top: 23px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.home-services__grid i {
  margin-top: auto;
  color: var(--signal);
  font-size: 18px;
  font-style: normal;
}

.home-gateways {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.home-gateway {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  background: var(--bone);
}

.home-gateway--map {
  background: var(--taupe);
}

.home-gateway figure {
  overflow: hidden;
  background: var(--bone-deep);
}

.home-gateway figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.75,.2,1);
}

.home-gateway--projects figure img {
  object-position: center 58%;
}

.home-gateway:hover figure img {
  transform: scale(1.018);
}

.home-gateway > div {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: clamp(42px, 5vw, 76px) 3vw;
}

.home-gateway h2 {
  max-width: 680px;
  margin-top: 55px;
  font-size: clamp(44px, 5vw, 82px);
  line-height: 0.94;
}

.home-gateway > div > p:not(.section-label) {
  max-width: 470px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.home-gateway > div > span {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-gateway > div > span i {
  color: var(--signal);
  font-size: 18px;
  font-style: normal;
}

/* Studio */
.studio-section {
  padding: clamp(110px, 12vw, 190px) 3vw;
  background: var(--taupe);
}

.studio-section__headline p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.studio-section__headline h1,
.studio-section__headline h2 {
  max-width: 1050px;
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: clamp(60px, 7.5vw, 124px);
  font-weight: 430;
  letter-spacing: -0.052em;
  line-height: 0.9;
}

.studio-section__body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(310px, 0.6fr);
  gap: 7vw;
  align-items: end;
  margin-top: clamp(100px, 12vw, 180px);
}

.studio-section__images {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr;
  gap: 2vw;
  align-items: start;
}

.studio-section__images figure:first-child {
  align-self: start;
}

.studio-section__images img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.9) contrast(1.02);
}

.studio-section__images figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-section__copy {
  padding-bottom: 4vw;
}

.studio-section__copy > p {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.75;
}

.studio-section__copy > p:first-child {
  font-size: clamp(23px, 2.1vw, 34px);
  font-weight: 480;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.studio-section__copy dl {
  margin-top: 55px;
  border-top: 1px solid var(--line);
}

.studio-section__copy dl div {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.studio-section__copy dt {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Projects index */
.projects-section {
  padding: clamp(110px, 12vw, 190px) 3vw;
  color: var(--ink);
  background: var(--bone);
}

.projects-section__heading {
  align-items: end;
  margin-bottom: clamp(90px, 10vw, 155px);
}

.projects-section__heading h2 {
  max-width: 960px;
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: clamp(61px, 8vw, 132px);
  font-weight: 430;
  letter-spacing: -0.052em;
  line-height: 0.87;
}

.projects-section__heading > p:last-child {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.project-list {
  display: grid;
  gap: clamp(80px, 10vw, 150px);
}

.project-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.55fr);
  gap: 5.5vw;
  align-items: center;
}

.project-card:nth-child(even) {
  grid-template-columns: minmax(330px, 0.55fr) minmax(0, 1.25fr);
}

.project-card:nth-child(even) .project-card__visuals {
  grid-column: 2;
  grid-row: 1;
}

.project-card:nth-child(even) .project-card__content {
  grid-column: 1;
  grid-row: 1;
}

.project-card__visuals {
  display: grid;
  gap: 15px;
  min-width: 0;
}

.project-card figure {
  position: relative;
  display: block;
  overflow: visible;
  background: transparent;
}

.project-card figure::after {
  content: none;
}

.project-card__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  align-items: start;
}

.project-card figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.9);
  transition: filter 300ms ease, transform 600ms cubic-bezier(.2,.75,.2,1);
}

.project-card:hover figure img {
  filter: saturate(1);
  transform: none;
}

.project-card__details figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.project-card figure > span {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: var(--signal);
  font-size: clamp(44px, 5vw, 82px);
  font-weight: 430;
  letter-spacing: -0.06em;
}

.project-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-light);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card h3 {
  margin-top: 32px;
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: clamp(42px, 4.6vw, 76px);
  font-weight: 430;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.project-card h3 span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.55em;
  line-height: 1.05;
}

.project-card__content > p {
  margin-top: 35px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.project-card__content > strong {
  display: block;
  margin-top: 42px;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card__content > strong i {
  margin-left: 12px;
  color: var(--signal);
  font-style: normal;
}

/* Locations */
.locations-section {
  display: grid;
  grid-template-columns: minmax(390px, 0.42fr) minmax(0, 0.58fr);
  min-height: 900px;
  background: var(--taupe);
}

.locations-section__copy {
  display: flex;
  flex-direction: column;
  padding: clamp(95px, 9vw, 145px) 5vw clamp(75px, 8vw, 125px) 3vw;
}

.locations-section__copy h1,
.locations-section__copy h2 {
  max-width: 650px;
  margin-top: clamp(60px, 7vw, 105px);
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: clamp(62px, 7.8vw, 120px);
  font-weight: 430;
  letter-spacing: -0.052em;
  line-height: 0.86;
}

.locations-section__copy > p:nth-child(3) {
  max-width: 500px;
  margin: 42px 0 75px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.location-list {
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.location-list a,
.location-list > div {
  display: grid;
  grid-template-columns: 45px 1fr auto 20px;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.location-list a {
  transition: padding 160ms ease, background 160ms ease;
}

.location-list a:hover {
  padding-right: 10px;
  padding-left: 10px;
  background: rgba(199, 255, 0, 0.2);
}

.location-list span,
.location-list small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-list strong {
  font-size: 12px;
  font-weight: 600;
}

.location-list i {
  color: var(--signal);
  font-style: normal;
}

.project-map-shell {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  border-left: 1px solid var(--line);
  background: var(--paper);
}

.project-map {
  min-height: 820px;
  background: #ded9cf;
}

.project-map .leaflet-tile-pane {
  filter: grayscale(0.82) sepia(0.14) contrast(0.9) brightness(1.04);
}

.project-map .leaflet-control-zoom a {
  border-color: var(--line);
  color: var(--ink);
  background: var(--paper);
}

.project-map .leaflet-control-attribution {
  color: var(--muted);
  background: rgba(245, 241, 233, 0.82);
  font-size: 7px;
}

.project-map__legend {
  display: grid;
  grid-template-columns: auto 1fr minmax(280px, auto);
  gap: 22px;
  align-items: center;
  min-height: 80px;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.project-map__legend p {
  display: flex;
  gap: 8px;
  align-items: center;
}

.project-map__legend p:nth-child(2),
.project-map__legend p:nth-child(3) {
  color: var(--muted);
}

.project-map__key {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.project-map__key--project {
  background: var(--signal);
  box-shadow: 0 0 0 1px var(--ink);
}

.project-map__key--landmark {
  border: 1px solid var(--ink);
  background: var(--paper);
}

.jag-map-marker,
.jag-map-landmark {
  border: 0;
  background: transparent;
}

.project-map .leaflet-tile {
  filter: grayscale(1) sepia(0.1) brightness(1.12) contrast(0.72);
}

.project-map .leaflet-tile-pane {
  opacity: 0.58;
}

/* Compatibility guard: labels from the previous map revision must never
   remain visible after a development hot refresh. */
.jag-map-street,
.jag-map-district-label {
  display: none !important;
}

.jag-map-marker span,
.jag-map-landmark span {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  font-weight: 850;
}

.jag-map-marker span {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 19, 15, 0.66);
  background: var(--signal);
  box-shadow: 0 8px 24px rgba(17, 19, 15, 0.2);
  font-size: 10px;
}

.jag-map-landmark span {
  width: 28px;
  height: 28px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 15, 0.66);
  background: rgba(245, 241, 233, 0.94);
  box-shadow: 0 5px 14px rgba(17, 19, 15, 0.12);
  font-size: 7px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.jag-map-marker:hover span,
.jag-map-landmark:hover span {
  box-shadow: 0 0 0 4px rgba(199, 255, 0, 0.45), 0 8px 24px rgba(17, 19, 15, 0.18);
}

.map-credits {
  padding: 18px 3vw;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
}

.map-credits summary {
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-credits p {
  max-width: 920px;
  margin-top: 12px;
}

.jag-map-tooltip {
  max-width: 280px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 15, 0.2);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(17, 19, 15, 0.18);
}

.jag-map-tooltip::before {
  border-top-color: var(--paper) !important;
}

.jag-map-card {
  width: 250px;
}

.jag-map-card img {
  width: 100%;
  height: auto;
  max-height: 155px;
  object-fit: contain;
  background: var(--bone-deep);
}

.jag-map-card > div {
  padding: 14px 15px 15px;
}

.jag-map-card span,
.jag-map-card strong,
.jag-map-card small,
.jag-map-card em {
  display: block;
}

.jag-map-card span {
  color: #5a7000;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.jag-map-card strong {
  margin-top: 7px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
}

.jag-map-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.jag-map-card em {
  margin-top: 11px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
  color: #5a7000;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Services preview */
.services-preview {
  padding: clamp(110px, 12vw, 185px) 3vw;
  color: var(--ink);
  background: var(--taupe-deep);
}

.services-preview__heading {
  align-items: end;
}

.services-preview__heading h2 {
  max-width: 920px;
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: clamp(60px, 7.5vw, 120px);
  font-weight: 430;
  letter-spacing: -0.052em;
  line-height: 0.9;
}

.services-preview__heading > a {
  justify-self: end;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-preview__heading > a span {
  margin-left: 10px;
  color: var(--signal);
}

.services-preview__list {
  margin-top: clamp(80px, 9vw, 135px);
  border-top: 1px solid var(--line-light);
}

.services-preview__list > a {
  display: grid;
  grid-template-columns: 55px minmax(220px, 0.7fr) minmax(280px, 1fr) 30px;
  gap: 4vw;
  align-items: center;
  margin: 0 -3vw;
  padding: 28px 3vw;
  border-bottom: 1px solid var(--line-light);
  transition: color 160ms ease, background 160ms ease;
}

.services-preview__list > a:hover {
  color: var(--night);
  background: var(--signal);
}

.services-preview__list span {
  color: var(--muted);
  font-size: 10px;
}

.services-preview__list h3 {
  font-size: clamp(25px, 2.5vw, 40px);
  font-weight: 480;
  letter-spacing: -0.04em;
}

.services-preview__list p {
  color: rgba(17, 19, 15, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.services-preview__list > a:hover span,
.services-preview__list > a:hover p {
  color: rgba(9, 11, 9, 0.66);
}

.services-preview__list i {
  color: var(--signal);
  font-size: 22px;
  font-style: normal;
}

.services-preview__list > a:hover i {
  color: var(--night);
}

/* Leadership */
.leadership-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.4fr) minmax(0, 0.6fr);
  min-height: 850px;
  background: var(--bone-deep);
}

.leadership-section__portrait {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 850px;
  overflow: hidden;
  background: var(--bone-deep);
}

.leadership-section__portrait::before {
  content: none;
}

.leadership-section__portrait .section-label {
  position: absolute;
  z-index: 2;
  top: 36px;
  left: 3vw;
}

.leadership-section__portrait img {
  position: relative;
  z-index: 1;
  width: 94%;
  max-height: 92%;
  object-fit: contain;
  object-position: bottom;
  filter: saturate(0.68) contrast(1.03);
}

.leadership-section__copy {
  display: flex;
  flex-direction: column;
  padding: clamp(100px, 10vw, 155px) 5vw 70px;
  background: var(--signal);
}

.leadership-section blockquote {
  max-width: 950px;
  margin-top: clamp(80px, 9vw, 140px);
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: clamp(43px, 5vw, 82px);
  font-weight: 430;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.leadership-section__copy > div {
  margin-top: auto;
  padding-top: 80px;
}

.leadership-section__copy h2 {
  font-size: 25px;
  font-weight: 550;
  letter-spacing: -0.03em;
}

.leadership-section__copy > div p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

/* Footer */
.site-footer {
  min-height: 74svh;
  padding: clamp(100px, 10vw, 160px) 3vw 28px;
  color: var(--ink);
  background: var(--taupe-deep);
}

.site-footer__lead > a {
  display: flex;
  gap: 50px;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: clamp(80px, 10vw, 155px);
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: clamp(61px, 8.2vw, 132px);
  font-weight: 430;
  letter-spacing: -0.052em;
  line-height: 0.88;
}

.site-footer__lead > a span {
  color: rgba(17, 19, 15, 0.44);
}

.site-footer__lead > a i {
  flex: 0 0 auto;
  color: var(--signal);
  font-size: 0.44em;
  font-style: normal;
  transition: transform 180ms ease;
}

.site-footer__lead > a:hover i {
  transform: translate(8px, -8px);
}

/* Keep every diagonal action arrow typographic and consistent across devices. */
.jag-header__cta span,
.build-hero__content > a span,
.build-hero__scope > a > span,
.text-link span,
.home-services__grid > a > i,
.home-gateway > div > span i,
.project-card__content > strong i,
.projects-section__all > span,
.location-list > a i,
.services-preview__heading > a span,
.services-preview__list > a i,
.services-hero > div a span,
.projects-index-card__copy > strong i,
.contact-form__submit button span,
.site-footer__lead > a i,
.next-project > i {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  place-items: center;
  overflow: hidden;
  font-family: var(--font-manrope), Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-indent: -999px;
  vertical-align: middle;
}

/* Acid green is the single visual language for navigation arrows. */
.jag-header__cta span,
.build-hero__content > a span,
.text-link span,
.home-services__grid > a > i,
.home-gateway > div > span i,
.project-card__content > strong i,
.projects-section__all > span,
.location-list > a i,
.services-preview__heading > a span,
.services-preview__list > a i,
.services-hero > div a span,
.projects-index-card__copy > strong i,
.contact-form__submit button span,
.site-footer__lead > a i {
  color: var(--signal);
}

.jag-header__cta span::before,
.build-hero__content > a span::before,
.build-hero__scope > a > span::before,
.text-link span::before,
.home-services__grid > a > i::before,
.home-gateway > div > span i::before,
.project-card__content > strong i::before,
.projects-section__all > span::before,
.location-list > a i::before,
.services-preview__heading > a span::before,
.services-preview__list > a i::before,
.services-hero > div a span::before,
.projects-index-card__copy > strong i::before,
.contact-form__submit button span::before,
.site-footer__lead > a i::before,
.next-project > i::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: currentColor;
  content: '\2197\FE0E';
  font: inherit;
  line-height: 1;
  text-indent: 0;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 35px;
  align-items: end;
  margin-top: clamp(100px, 12vw, 180px);
  font-size: 10px;
  line-height: 1.55;
}

.site-footer__bottom img {
  width: 148px;
  height: auto;
  object-fit: contain;
  object-position: left;
  filter: brightness(0) saturate(100%) contrast(1.18);
}

.site-footer__bottom p {
  color: rgba(17, 19, 15, 0.58);
}

.site-footer__bottom > p:last-child {
  text-align: right;
}

/* Services */
.services-hero {
  padding: clamp(85px, 8vw, 125px) 3vw clamp(110px, 12vw, 180px);
  color: var(--night);
  background: var(--signal);
}

.services-hero h1 {
  max-width: 1420px;
  margin-top: clamp(70px, 8vw, 120px);
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: clamp(68px, 10vw, 164px);
  font-weight: 430;
  letter-spacing: -0.052em;
  line-height: 0.84;
}

.services-hero > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
  max-width: 980px;
  margin: clamp(80px, 9vw, 140px) 0 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 19, 15, 0.28);
}

.services-hero > div p {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.72;
}

.services-hero > div a {
  color: var(--night);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-hero > div a span {
  margin-left: 10px;
  color: var(--night);
}

.services-detail {
  background: var(--paper);
}

.services-detail article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  padding: clamp(85px, 8vw, 130px) 3vw;
  border-top: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.services-detail__title {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 3vw;
  align-items: start;
}

.services-detail__title > span {
  color: #627c00;
  font-size: 10px;
  font-weight: 800;
}

.services-detail__title h2 {
  max-width: 650px;
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: clamp(45px, 5.4vw, 88px);
  font-weight: 430;
  letter-spacing: -0.048em;
  line-height: 0.92;
}

.services-detail__body h3 {
  max-width: 650px;
  font-size: clamp(26px, 2.7vw, 43px);
  font-weight: 480;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.services-detail__body > p {
  max-width: 620px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.services-detail__body ul {
  margin-top: 50px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.services-detail__body li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-detail__body li::before {
  margin-right: 18px;
  color: #627c00;
  content: '↳';
}

.delivery-process {
  padding: clamp(80px, 8vw, 120px) 3vw 0;
  color: var(--ink);
  background: var(--bone-deep);
}

.delivery-process .content-grid {
  align-items: end;
  padding-bottom: clamp(50px, 5vw, 72px);
}

.delivery-process h2 {
  max-width: 970px;
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: clamp(55px, 7vw, 112px);
  font-weight: 430;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.delivery-process__steps,
.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 -3vw;
  border-top: 1px solid var(--line-light);
}

.delivery-process__steps article,
.responsibility-grid article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 0 12px;
  min-height: 220px;
  padding: 26px 3vw 30px;
  border-right: 1px solid var(--line-light);
}

.delivery-process__steps article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 0 12px;
  min-height: 220px;
}

.delivery-process__steps article:last-child,
.responsibility-grid article:last-child {
  border-right: 0;
}

.delivery-process__steps span,
.responsibility-grid span {
  color: var(--signal);
  font-size: 10px;
}

.delivery-process__steps h3,
.responsibility-grid h3 {
  grid-column: 2;
  grid-row: 1;
  margin-top: 0;
  font-size: 29px;
  font-weight: 480;
  letter-spacing: -0.04em;
}

.delivery-process__steps h3 {
  grid-column: 2;
  grid-row: 1;
  margin-top: 0;
}

.delivery-process__steps p,
.responsibility-grid p {
  grid-column: 2;
  grid-row: 2;
  margin-top: 14px;
  color: rgba(17, 19, 15, 0.64);
  font-size: 13px;
  line-height: 1.62;
}

.delivery-process__steps p {
  grid-column: 2;
  grid-row: 2;
  margin-top: 14px;
}

/* Project detail */
.project-page {
  background: var(--taupe);
}

.project-hero {
  padding: clamp(80px, 8vw, 125px) 3vw 3vw;
}

.project-hero__title {
  display: grid;
  grid-template-columns: minmax(180px, 0.23fr) minmax(0, 1fr);
  gap: 6vw;
}

.project-hero h1 {
  max-width: 1280px;
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: clamp(65px, 8.7vw, 145px);
  font-weight: 430;
  letter-spacing: -0.052em;
  line-height: 0.82;
}

.project-hero h1 span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.5em;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.project-hero figure {
  position: relative;
  display: grid;
  margin-top: clamp(75px, 9vw, 135px);
  overflow: visible;
  place-items: center;
  background: transparent;
}

.project-hero figure::after {
  content: none;
}

.project-hero figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.project-hero figcaption {
  position: static;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 13px 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background: var(--bone-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-hero figcaption span:first-child::before {
  margin-right: 10px;
  color: var(--signal);
  content: '+';
}

.project-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.5fr);
  gap: 8vw;
  padding: clamp(105px, 11vw, 175px) 3vw;
  background: var(--paper);
}

.project-intro__statement {
  max-width: 1080px;
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: clamp(45px, 5.5vw, 90px);
  font-weight: 430;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.project-intro__facts {
  align-self: end;
  border-top: 1px solid var(--line);
}

.project-intro__facts div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.project-intro__facts span,
.project-intro__facts strong {
  font-size: 10px;
  line-height: 1.5;
}

.project-intro__facts span {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-intro__facts strong {
  font-weight: 550;
}

.project-story {
  padding: 0 3vw clamp(115px, 12vw, 190px);
  background: var(--paper);
}

.project-story > div p {
  max-width: 780px;
  margin-bottom: 27px;
  font-size: 17px;
  line-height: 1.78;
}

.project-story aside {
  align-self: start;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.project-story aside span {
  color: #657e00;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-story aside p {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.58;
}

.project-responsibilities {
  padding: clamp(72px, 7vw, 112px) 3vw 0;
  color: var(--ink);
  background: var(--taupe-deep);
}

.project-responsibilities__heading {
  padding-bottom: clamp(46px, 5vw, 78px);
}

.project-responsibilities h2 {
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: clamp(46px, 5.5vw, 82px);
  font-weight: 430;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.project-comparison {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: 6vw;
  align-items: start;
  padding: clamp(80px, 8vw, 130px) 3vw;
  background: var(--paper);
}

.project-comparison__heading {
  position: sticky;
  top: 40px;
}

.project-comparison__heading h2 {
  max-width: 620px;
  margin-top: 45px;
  font-size: clamp(43px, 4.8vw, 74px);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.project-comparison__heading > p:last-child {
  max-width: 460px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.before-after {
  width: min(100%, 760px);
  margin-left: auto;
}

.before-after__stage {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bone-deep);
  cursor: ew-resize;
  user-select: none;
}

.before-after__stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.before-after__before {
  position: absolute;
  inset: 0;
}

.before-after__after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--comparison-position));
}

.before-after__label {
  position: absolute;
  z-index: 2;
  top: 16px;
  padding: 8px 10px;
  color: var(--ink);
  background: rgba(238, 233, 223, 0.86);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.before-after__label--before {
  left: 16px;
}

.before-after__label--after {
  right: 16px;
}

.before-after__divider {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  width: 2px;
  background: var(--signal);
  transform: translateX(-1px);
  pointer-events: none;
}

.before-after__divider i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(17, 19, 15, 0.75);
  border-radius: 50%;
  background: var(--signal);
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 16px rgba(17, 19, 15, 0.18);
}

.before-after__hint {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 13px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.before-after__hint::before {
  width: 18px;
  height: 2px;
  background: var(--signal);
  content: '';
}

.before-after input[type='range'] {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: pan-y;
}

.before-after__stage:focus-within .before-after__divider i {
  outline: 3px solid var(--paper);
  outline-offset: 3px;
}

.project-gallery {
  padding: clamp(105px, 11vw, 175px) 3vw;
  background: var(--bone);
}

.project-gallery__heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 65px;
}

.project-gallery__heading > p:last-child {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(55px, 6vw, 95px) clamp(24px, 3vw, 50px);
  align-items: start;
}

.project-gallery__item {
  grid-column: auto;
}

.project-gallery__item--1,
.project-gallery__item--2,
.project-gallery__item--3,
.project-gallery__item--4,
.project-gallery__item--5,
.project-gallery__item--6 {
  grid-column: auto;
  margin-top: 0;
}

.project-gallery__item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc(50% - 25px);
}

.project-gallery__item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.92);
  transition: filter 260ms ease;
}

.project-gallery__item:hover img {
  filter: saturate(1);
}

.project-gallery__item--1 img,
.project-gallery__item--2 img,
.project-gallery__item--3 img,
.project-gallery__item--4 img,
.project-gallery__item--5 img,
.project-gallery__item--6 img {
  aspect-ratio: auto;
}

.project-gallery__item figcaption {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.project-gallery__item figcaption > span {
  color: #657e00;
  padding-top: 3px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.project-gallery__item figcaption strong {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-gallery__item figcaption p {
  max-width: 62ch;
  color: #5a574f;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
}

.next-project {
  display: grid;
  grid-template-columns: 0.25fr 1fr auto;
  gap: 5vw;
  align-items: center;
  min-height: 340px;
  padding: 70px 3vw;
  background: var(--signal);
  transition: color 180ms ease, background 180ms ease;
}

.next-project:hover {
  color: var(--ink);
  background: var(--taupe-deep);
}

.next-project > span {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.next-project strong {
  font-size: clamp(52px, 7vw, 110px);
  font-weight: 430;
  letter-spacing: -0.07em;
}

.next-project i {
  font-size: clamp(36px, 5vw, 75px);
  font-style: normal;
}

.projects-section__all {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(90px, 10vw, 150px);
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.projects-section__all span {
  color: #5a7000;
  font-size: 22px;
  transition: transform 180ms ease;
}

.projects-section__all:hover span {
  transform: translate(5px, -5px);
}

/* Projects index */
.projects-index-page {
  background: var(--bone);
}

.projects-index-hero {
  display: grid;
  grid-template-columns: minmax(150px, 0.22fr) minmax(0, 1fr) minmax(260px, 0.32fr);
  gap: 5vw;
  align-items: end;
  padding: clamp(100px, 10vw, 160px) 3vw;
  background: var(--taupe);
}

.projects-index-hero h1 {
  max-width: 1120px;
  font-size: clamp(62px, 8vw, 132px);
  font-weight: 540;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.projects-index-hero > p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.projects-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.projects-index-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0;
  min-width: 0;
  padding: clamp(24px, 3vw, 48px);
  background: var(--paper);
  transition: background 180ms ease;
}

.projects-index-card:hover {
  background: var(--bone-deep);
}

.projects-index-card__hero {
  position: relative;
}

.projects-index-card__hero img,
.projects-index-card__details img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.projects-index-card__hero > span {
  position: absolute;
  right: 14px;
  bottom: 10px;
  color: var(--signal);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 650;
  letter-spacing: -0.06em;
}

.projects-index-card__copy {
  padding: 0 0 34px;
}

.projects-index-card__copy > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.projects-index-card h2 {
  margin-top: 25px;
  font-size: clamp(33px, 3.4vw, 58px);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.projects-index-card h2 small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.48em;
  font-weight: 560;
  line-height: 1.2;
}

.projects-index-card__copy > p {
  margin-top: 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.projects-index-card__copy > strong {
  display: block;
  margin-top: 28px;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.projects-index-card__copy > strong i {
  margin-left: 9px;
  color: #5a7000;
  font-style: normal;
}

.projects-index-card__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  margin-top: 14px;
}

.projects-index-card__details figcaption {
  margin-top: 7px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

/* Contact */
.contact-page {
  background: var(--paper);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(150px, 0.22fr) minmax(0, 1fr) minmax(280px, 0.32fr);
  gap: 5vw;
  align-items: end;
  padding: clamp(100px, 10vw, 165px) 3vw;
  background: var(--taupe);
}

.contact-hero h1 {
  max-width: 1150px;
  font-size: clamp(57px, 7.4vw, 121px);
  font-weight: 540;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.contact-hero > p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.contact-workspace {
  display: grid;
  grid-template-columns: minmax(260px, 0.3fr) minmax(0, 0.7fr);
  gap: 7vw;
  padding: clamp(90px, 10vw, 155px) 3vw;
}

.contact-workspace aside {
  align-self: start;
  position: sticky;
  top: 30px;
}

.contact-workspace aside ul {
  margin-top: 50px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.contact-workspace aside li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-workspace aside li::before {
  margin-right: 12px;
  color: #5a7000;
  content: '+';
}

.contact-workspace aside > a {
  display: inline-block;
  margin-top: 40px;
  color: #5a7000;
  font-size: 11px;
  font-weight: 750;
}

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

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

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

.contact-form label > span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17, 19, 15, 0.36);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 56px;
}

.contact-form textarea {
  padding: 18px 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #6d8a00;
  background: rgba(199, 255, 0, 0.08);
}

.contact-form__submit {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.contact-form__submit p {
  max-width: 390px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.contact-form__submit button {
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--signal);
  cursor: pointer;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-form__submit button span {
  margin-left: 12px;
}

/* Project video */
.project-video {
  padding: clamp(72px, 7vw, 112px) 3vw;
  background: var(--taupe);
}

.project-video__heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.25fr) minmax(0, 1fr);
  gap: 5vw;
  align-items: start;
  margin-bottom: 40px;
}

.project-video__heading h2 {
  max-width: 900px;
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.project-video__heading > div p {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.project-video video {
  display: block;
  width: 100%;
  max-height: 86svh;
  background: var(--bone-deep);
  object-fit: contain;
  pointer-events: none;
}

.build-hero h1,
.home-intro h2,
.home-services h2,
.home-gateway h2,
.studio-section__headline h1,
.studio-section__headline h2,
.projects-section__heading h2,
.project-card h3,
.locations-section__copy h2,
.services-preview__heading h2,
.leadership-section blockquote,
.site-footer__lead > a,
.services-hero h1,
.services-detail__title h2,
.delivery-process h2,
.project-hero h1,
.project-intro__statement,
.project-responsibilities h2 {
  font-family: var(--font-manrope), Arial, sans-serif;
  font-style: normal;
  font-weight: 550;
  letter-spacing: -0.045em;
}

@keyframes image-in {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

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

@media (max-width: 1100px) {
  .content-grid {
    grid-template-columns: minmax(115px, 0.22fr) minmax(0, 1fr);
  }

  .content-grid > :nth-child(3) {
    grid-column: 2;
  }

  .build-hero__project {
    display: none;
  }

  .build-hero__grid {
    grid-template-columns: minmax(390px, 0.48fr) minmax(0, 0.52fr);
  }

  .build-hero__scope {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .home-services__grid > a:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .build-hero__scope > a:nth-child(-n+2) {
    border-bottom: 1px solid rgba(17, 19, 15, 0.2);
  }

  .project-card,
  .project-card:nth-child(even) {
    grid-template-columns: 1.15fr 0.75fr;
  }

  .locations-section {
    grid-template-columns: 44% 56%;
  }

  .delivery-process__steps,
  .responsibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .delivery-process__steps article:nth-child(2),
  .responsibility-grid article:nth-child(2) {
    border-right: 0;
  }

  .delivery-process__steps article:nth-child(-n+2),
  .responsibility-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-light);
  }
}

@media (max-width: 820px) {
  .jag-header {
    grid-template-columns: 1fr auto;
    min-height: 106px;
    padding: 10px 22px;
  }

  .jag-brand {
    width: 118px;
  }

  .jag-brand img {
    height: auto;
  }

  .jag-header nav {
    position: absolute;
    top: 106px;
    right: 0;
    left: 0;
    justify-content: flex-start;
    gap: 25px;
    overflow-x: auto;
    padding: 14px 22px;
    border-bottom: 0;
    background: var(--taupe);
  }

  .jag-header--dark nav {
    border-color: transparent;
    background: var(--taupe);
  }

  .jag-header nav a {
    flex: 0 0 auto;
  }

  .jag-header__cta {
    position: static;
    right: auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 140px;
    margin-left: auto;
    white-space: nowrap;
    text-align: right;
  }

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

  .content-grid > :nth-child(3) {
    grid-column: auto;
  }

  .build-hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .build-hero__media {
    min-height: 0;
    padding: 30px 22px 48px;
  }

  .build-hero__content {
    width: 100%;
    padding: 90px 22px 75px;
  }

  .build-hero h1 {
    font-size: clamp(63px, 17vw, 104px);
    line-height: 0.82;
  }

  .build-hero__scope {
    grid-template-columns: 1fr;
  }

  .build-hero__scope > a {
    padding: 14px 22px;
    border-bottom: 1px solid rgba(17, 19, 15, 0.2);
  }

  .home-intro,
  .home-services__heading {
    grid-template-columns: 1fr;
  }

  .home-intro,
  .home-services {
    padding-right: 22px;
    padding-left: 22px;
  }

  .home-intro h2,
  .home-services__heading h2 {
    margin-top: 55px;
  }

  .home-intro > div,
  .home-services__heading .text-link {
    margin-top: 30px;
  }

  .home-services__grid {
    margin-right: -22px;
    margin-left: -22px;
  }

  .home-services__grid > a {
    min-height: 330px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .home-gateways {
    grid-template-columns: 1fr;
  }

  .home-gateway > div {
    padding-right: 22px;
    padding-left: 22px;
  }

  .studio-section,
  .projects-section,
  .services-preview,
  .services-hero,
  .delivery-process,
  .project-hero,
  .project-gallery,
  .project-responsibilities {
    padding-right: 22px;
    padding-left: 22px;
  }

  .studio-section__headline,
  .projects-section__heading h2,
  .services-preview__heading h2 {
    margin-top: 60px;
  }

  .studio-section__body,
  .project-intro,
  .services-detail article {
    grid-template-columns: 1fr;
  }

  .studio-section__images figure:first-child {
    transform: none;
  }

  .studio-section__copy {
    padding-top: 45px;
  }

  .projects-section__heading > p:last-child,
  .services-preview__heading > a {
    margin-top: 28px;
  }

  .project-card,
  .project-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .project-card:nth-child(even) .project-card__visuals,
  .project-card:nth-child(even) .project-card__content {
    grid-column: auto;
    grid-row: auto;
  }

  .locations-section {
    grid-template-columns: 1fr;
  }

  .locations-section--page .locations-section__copy {
    min-height: 680px;
  }

  .locations-section__copy {
    min-height: 760px;
    padding: 95px 22px 75px;
  }

  .project-map {
    min-height: 72svh;
  }

  .project-map-shell {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .projects-index-hero,
  .contact-hero {
    grid-template-columns: 1fr;
    padding: 145px 22px 95px;
  }

  .projects-index-hero h1,
  .contact-hero h1 {
    margin-top: 60px;
  }

  .projects-index-hero > p:last-child,
  .contact-hero > p:last-child {
    margin-top: 30px;
  }

  .projects-index-grid {
    grid-template-columns: 1fr;
  }

  .contact-workspace {
    grid-template-columns: 1fr;
    padding: 90px 22px;
  }

  .contact-workspace aside {
    position: static;
  }

  .project-video {
    padding-right: 22px;
    padding-left: 22px;
  }

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

  .services-preview__list > a {
    grid-template-columns: 36px 1fr 24px;
    gap: 18px;
    margin: 0 -22px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .services-preview__list p {
    grid-column: 2 / 4;
  }

  .services-preview__list i {
    grid-column: 3;
    grid-row: 1;
  }

  .leadership-section {
    grid-template-columns: 1fr;
  }

  .leadership-section__portrait {
    min-height: 670px;
  }

  .leadership-section__portrait .section-label {
    left: 22px;
  }

  .leadership-section__copy {
    min-height: 650px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .site-footer {
    padding-right: 22px;
    padding-left: 22px;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__bottom > p:last-child {
    text-align: left;
  }

  .services-hero {
    padding-top: 110px;
  }

  .services-hero > div {
    grid-template-columns: 1fr;
  }

  .services-detail article {
    padding-right: 22px;
    padding-left: 22px;
  }

  .services-detail__body {
    padding-left: 55px;
  }

  .delivery-process__steps,
  .responsibility-grid {
    margin-right: -22px;
    margin-left: -22px;
  }

  .delivery-process__steps article,
  .responsibility-grid article {
    padding-right: 22px;
    padding-left: 22px;
  }

  .project-hero {
    padding-top: 115px;
  }

  .project-hero__title .section-label {
    margin-bottom: 42px;
  }

  .project-hero figure {
    margin-right: -22px;
    margin-left: -22px;
  }

  .project-intro,
  .project-story {
    padding-right: 22px;
    padding-left: 22px;
  }

  .project-comparison {
    grid-template-columns: 1fr;
    padding-right: 22px;
    padding-left: 22px;
  }

  .project-comparison__heading {
    position: static;
  }

  .before-after {
    width: min(100%, 650px);
    margin: 0 auto;
  }

  .project-story {
    gap: 50px;
  }

  .project-gallery__item--1,
  .project-gallery__item--2,
  .project-gallery__item--3,
  .project-gallery__item--4,
  .project-gallery__item--5,
  .project-gallery__item--6 {
    grid-column: auto;
  }

  .next-project {
    grid-template-columns: 1fr auto;
    padding-right: 22px;
    padding-left: 22px;
  }

  .next-project > span {
    grid-column: 1 / 3;
  }
}

@media (max-width: 520px) {
  .jag-header {
    display: flex;
    justify-content: space-between;
    min-height: 126px;
    padding: 10px 22px 24px;
  }

  .jag-header nav {
    top: 126px;
    gap: clamp(8px, 2.2vw, 12px);
    overflow-x: hidden;
    padding-right: 14px;
    padding-left: 14px;
  }

  .jag-header nav a,
  .jag-header__cta {
    font-size: clamp(7.5px, 1.95vw, 8.6px);
    letter-spacing: 0.06em;
  }

  .jag-header__cta span,
  .build-hero__content > a span,
  .build-hero__scope > a > span,
  .text-link span,
  .home-services__grid > a > i,
  .home-gateway > div > span i,
  .project-card__content > strong i,
  .location-list > a i,
  .services-preview__heading > a span,
  .services-hero > div a span,
  .projects-index-card__copy > strong i,
  .contact-form__submit button span {
    font-size: 15px;
  }

  .jag-header__cta span,
  .jag-header--dark .jag-header__cta span {
    color: transparent;
  }

  .jag-header__cta span::before {
    color: var(--signal);
  }

  .jag-header--dark .jag-header__cta span::before {
    color: var(--signal);
  }

  .jag-header__cta {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    min-width: 0;
    margin-left: 0;
    white-space: nowrap;
    text-align: left;
  }

  .jag-header__cta span {
    margin-left: 5px;
  }

  .build-hero__media {
    order: -1;
    padding: 54px 0 18px;
  }

  .build-hero__content {
    padding: 32px 22px 48px;
  }

  .build-hero__eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
  }

  .build-hero__eyebrow::before {
    width: 28px;
  }

  .build-hero h1 {
    font-size: clamp(47px, 11.5vw, 55px);
    line-height: 0.86;
  }

  .build-hero__content > p:not(.build-hero__eyebrow) {
    margin-top: 24px;
    padding-top: 13px;
    font-size: 12px;
    line-height: 1.55;
  }

  .build-hero__content > a {
    margin-top: 23px;
  }

  .home-intro {
    padding: 58px 22px;
  }

  .home-services {
    padding: 58px 22px 1px;
  }

  .home-intro h2,
  .home-services__heading h2 {
    margin-top: 30px;
  }

  .home-intro > div,
  .home-services__heading .text-link {
    margin-top: 22px;
  }

  .home-intro h2,
  .home-services__heading h2,
  .home-gateway h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .home-services__grid {
    grid-template-columns: 1fr;
  }

  .home-services__grid > a {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 22px;
    gap: 9px 12px;
    align-items: start;
    min-height: 0;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-services__heading {
    padding-bottom: 34px;
  }

  .home-services__grid > a > span {
    grid-column: 1;
    grid-row: 1;
  }

  .home-services__grid h3 {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    font-size: 18px;
    line-height: 1.15;
  }

  .home-services__grid p {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    font-size: 11px;
    line-height: 1.5;
  }

  .home-services__grid i {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    margin-top: 0;
  }

  .home-gateway > div {
    min-height: 280px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .home-gateway h2 {
    margin-top: 28px;
  }

  .home-gateway figure img {
    aspect-ratio: auto;
    object-fit: contain;
  }

  .locations-section--page .locations-section__copy {
    min-height: 0;
  }

  .locations-section__copy h1 {
    font-size: clamp(54px, 16vw, 76px);
  }

  .project-map__legend,
  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-form__submit {
    align-items: stretch;
    flex-direction: column;
  }

  .projects-index-card__details {
    grid-template-columns: 1fr;
  }

  .studio-section__images {
    grid-template-columns: 1fr;
  }

  .project-card figure img {
    aspect-ratio: auto;
  }

  .location-list a,
  .location-list > div {
    grid-template-columns: 42px 1fr 20px;
  }

  .location-list small {
    grid-column: 2 / 4;
  }

  .delivery-process__steps,
  .responsibility-grid {
    grid-template-columns: 1fr;
  }

  .delivery-process__steps article,
  .responsibility-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .services-hero {
    padding: 64px 22px 72px;
  }

  .services-hero h1 {
    margin-top: 38px;
    font-size: clamp(48px, 13.5vw, 62px);
    line-height: 0.9;
  }

  .services-hero > div {
    gap: 24px;
    margin-top: 42px;
  }

  .services-detail article {
    gap: 28px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .services-detail__body {
    padding-left: 0;
  }

  .delivery-process {
    padding: 64px 22px 0;
  }

  .delivery-process .content-grid {
    padding-bottom: 40px;
  }

  .delivery-process h2 {
    font-size: clamp(46px, 13vw, 60px);
  }

  .delivery-process__steps article {
    min-height: 0;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .leadership-section__portrait {
    min-height: 500px;
  }

  .leadership-section__portrait img {
    width: 78%;
    max-height: 82%;
  }

  .site-footer__lead > a {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding-right: 64px;
    font-size: clamp(51px, 15vw, 74px);
  }

  .site-footer__lead > a i {
    position: absolute;
    right: 0;
    bottom: 25px;
    font-size: 0.66em;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .services-hero h1,
  .project-hero h1 {
    font-size: clamp(54px, 16vw, 76px);
  }

  .services-detail__title {
    grid-template-columns: 36px 1fr;
  }

  .services-detail__body {
    padding-left: 0;
  }

  .project-intro__statement {
    font-size: clamp(42px, 12vw, 59px);
  }

  .project-comparison {
    gap: 42px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .project-comparison__heading h2 {
    margin-top: 30px;
    font-size: clamp(42px, 12vw, 57px);
  }

  .project-comparison__heading > p:last-child {
    margin-top: 22px;
  }

  .before-after__label {
    top: 12px;
  }

  .before-after__label--before {
    left: 12px;
  }

  .before-after__label--after {
    right: 12px;
  }

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

  .project-gallery__item--1,
  .project-gallery__item--2,
  .project-gallery__item--3,
  .project-gallery__item--4,
  .project-gallery__item--5,
  .project-gallery__item--6 {
    grid-column: 1;
    margin-top: 0;
  }

  .project-gallery__item:last-child:nth-child(odd) {
    width: 100%;
  }

  .project-gallery__item img,
  .project-gallery__item--1 img,
  .project-gallery__item--2 img,
  .project-gallery__item--3 img,
  .project-gallery__item--4 img,
  .project-gallery__item--5 img,
  .project-gallery__item--6 img {
    aspect-ratio: auto;
  }

  .next-project {
    min-height: 270px;
  }
}
