/*
Theme Name: JX2 Civil Design v29
Theme URI: https://jx2civil.com/
Author: Digital Sea Creative
Description: Custom WordPress theme for JX2 Civil Design civil engineering and land surveying services.
Version: 2.9.0
Text Domain: jx2-civil
*/

:root {
  --font-manrope: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --ink: #0e0e10;
  --ink-soft: #1a1a1d;
  --paper: #f4f3ef;
  --white: #ffffff;
  --violet: #6400da;
  --violet-bright: #9b42ff;
  --violet-soft: #c9a6ff;
  --line: rgba(14, 14, 16, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --wide-shell: min(1600px, calc(100% - 96px));
  --hero-shift: 0px;
  --jx2-fixed-top: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-manrope);
  -webkit-font-smoothing: antialiased;
}

main { overflow: clip; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wide-shell { width: var(--wide-shell); margin-inline: auto; }

.eyebrow {
  margin: 0 0 24px;
  color: var(--violet);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light { color: var(--violet-soft); }

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 760;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--violet); color: var(--white); }
.button-primary:hover { background: var(--violet-bright); }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--ink); color: var(--white); }

/* Opening motion */
.site-loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.54);
  pointer-events: none;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.site-loader img {
  width: 96px;
  height: auto;
  aspect-ratio: 900 / 835;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.92;
}

.loader-track {
  width: 180px;
  height: 1px;
  margin: 26px 0 15px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.loader-track i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--violet-bright);
  transform: translateX(-100%);
  animation: loader-progress 850ms cubic-bezier(.65,0,.35,1) forwards;
}

.site-loader > span {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-ready .site-loader {
  opacity: 0;
  visibility: hidden;
  transition-delay: 850ms;
}

@keyframes loader-progress { to { transform: translateX(0); } }

/* Header */
.site-header {
  position: fixed;
  z-index: 30;
  top: var(--jx2-fixed-top);
  left: 0;
  right: 0;
  min-height: 92px;
  padding-inline: clamp(28px, 4vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  transition: top 180ms ease, min-height 260ms ease, background 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(14, 14, 16, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  width: 78px;
  height: 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: width 260ms ease, height 260ms ease;
}

.brand img,
.footer-brand img {
  height: auto;
  aspect-ratio: 900 / 835;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.91;
}

.brand img { width: 74px; transition: width 260ms ease; }

.site-header.is-scrolled .brand { width: 65px; height: 58px; }
.site-header.is-scrolled .brand img { width: 62px; }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  font-size: 11px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--violet-bright);
  transition: right 200ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { right: 0; }

.header-cta {
  justify-self: end;
  min-height: 46px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 760;
  transition: background 200ms ease, color 200ms ease;
}

.header-cta:hover { background: var(--violet); color: var(--white); }
.mobile-nav { display: none; }

/* Hero */
.hero {
  position: relative;
  height: clamp(680px, 56.25vw, 820px);
  min-height: 680px;
  background: var(--ink);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
}

.site-ready .hero-media {
  animation: media-reveal 1050ms 950ms cubic-bezier(.65,0,.35,1) forwards;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  transform: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #0e0e10 0%, #0e0e10 20%, rgba(14, 14, 16, 0.94) 37%, rgba(14, 14, 16, 0.54) 58%, rgba(14, 14, 16, 0.08) 86%),
    linear-gradient(180deg, rgba(14,14,16,.44) 0%, transparent 44%, rgba(14,14,16,.48) 100%);
}

.hero-layout {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 82px;
}

.hero-copy { width: min(100%, 1040px); }
.hero-eyebrow { margin-bottom: 28px; color: var(--violet-soft); }

.hero-copy h1 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(72px, 6.75vw, 128px);
  font-weight: 570;
  line-height: 0.88;
  letter-spacing: -0.068em;
}

.hero-copy h1 span {
  display: block;
  overflow: hidden;
  padding: 0 0.08em 0.06em 0;
}

.hero-copy h1 i {
  display: block;
  font-style: normal;
  transform: translateY(115%);
}

.hero-copy h1 em { color: var(--violet-bright); font-style: normal; }

.site-ready .hero-copy h1 span:first-child i {
  animation: line-rise 800ms 1050ms cubic-bezier(.22,1,.36,1) forwards;
}

.site-ready .hero-copy h1 span:nth-child(2) i {
  animation: line-rise 800ms 1180ms cubic-bezier(.22,1,.36,1) forwards;
}

.hero-eyebrow,
.hero-support,
.hero-stamp,
.scroll-cue { opacity: 0; transform: translateY(16px); }

.site-ready .hero-eyebrow,
.site-ready .hero-support,
.site-ready .hero-stamp,
.site-ready .scroll-cue {
  opacity: 1;
  transform: none;
  transition: opacity 600ms ease, transform 600ms ease;
}

.site-ready .hero-eyebrow { transition-delay: 980ms; }
.site-ready .hero-support { transition-delay: 1400ms; }
.site-ready .hero-stamp { transition-delay: 1550ms; }
.site-ready .scroll-cue { transition-delay: 1650ms; }

.hero-support {
  max-width: 790px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(280px, 460px) auto;
  align-items: end;
  gap: 48px;
}

.hero-support > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.8;
}

.hero-actions { display: flex; align-items: center; gap: 28px; }

.line-link {
  min-width: 112px;
  display: inline-flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0 10px;
  border-bottom: 1px solid rgba(255,255,255,.46);
  font-size: 10px;
  font-weight: 700;
}

.line-link:hover { border-color: var(--violet-bright); }

.hero-stamp {
  align-self: flex-end;
  margin: 0 0 60px auto;
  width: 190px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.46);
}

.hero-stamp span {
  display: block;
  color: rgba(255,255,255,.54);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-stamp strong {
  display: block;
  margin-top: 14px;
  font-size: 23px;
  font-weight: 530;
  line-height: 1.08;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: clamp(26px, 4vw, 72px);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,.5);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.scroll-cue i { width: 54px; height: 1px; background: rgba(255,255,255,.38); }

@keyframes media-reveal { to { clip-path: inset(0 0 0 0); } }
@keyframes line-rise { to { transform: translateY(0); } }

/* Reveal system */
.site-ready [data-reveal] {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 750ms cubic-bezier(.22,1,.36,1), transform 750ms cubic-bezier(.22,1,.36,1);
}

.site-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Company */
.manifesto {
  padding: 98px 0 0;
  background: var(--white);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .62fr);
  gap: clamp(64px, 7vw, 112px);
  align-items: end;
  padding-bottom: 64px;
}

.manifesto h2,
.expertise-heading h2,
.services-intro h2,
.process-heading h2,
.project-grid h2 {
  margin: 0;
  font-size: clamp(46px, 4.45vw, 82px);
  font-weight: 550;
  line-height: .96;
  letter-spacing: -.065em;
}

.manifesto h2 { max-width: 950px; }

.manifesto-copy {
  padding-bottom: 6px;
  display: grid;
  gap: 24px;
}

.manifesto-copy p {
  margin: 0;
  color: #66666d;
  font-size: 14px;
  line-height: 1.85;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.standard-grid article {
  min-height: 220px;
  padding: 25px 26px 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.standard-grid span,
.process-grid article > span {
  color: var(--violet);
  font-family: var(--font-mono);
  font-size: 9px;
}

.standard-grid h3 {
  margin: auto 0 15px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.standard-grid p {
  margin: 0;
  color: #66666d;
  font-size: 12px;
  line-height: 1.7;
}

/* Moving capability band */
.capability-ticker {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background: var(--violet);
  color: var(--white);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  will-change: transform;
  animation: ticker 28s linear infinite;
}

.ticker-group {
  flex: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.capability-ticker span {
  font-size: 16px;
  font-weight: 720;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.capability-ticker i {
  color: var(--violet-soft);
  font-size: 22px;
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(calc(-50% - 15px)); }
}

.capability-ticker:hover .ticker-track { animation-play-state: paused; }

/* Expertise */
.expertise { padding: 96px 0 0; background: var(--paper); }

.expertise-heading {
  display: grid;
  grid-template-columns: .34fr 1.66fr;
  gap: 54px;
  padding-bottom: 48px;
}

.expertise-heading > div {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .55fr);
  gap: 64px;
  align-items: end;
}

.expertise-heading h2 { max-width: 760px; }

.expertise-heading > div > p {
  margin: 0 0 8px;
  color: #66666d;
  font-size: 13px;
  line-height: 1.8;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.expertise-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #161619;
  color: var(--white);
}

.expertise-card::before {
  content: "";
  position: absolute;
  inset: -18px;
  background-image: var(--card-image);
  background-position: center;
  background-size: cover;
  filter: blur(16px) brightness(.48) saturate(.8);
  transform: scale(1.04);
}

.expertise-card > img,
.card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.expertise-card > img {
  object-fit: contain;
  object-position: center;
  transform: none;
  transition: filter 500ms ease;
}

.card-shade {
  background: linear-gradient(180deg, rgba(12,12,14,.08), rgba(12,12,14,.89));
  transition: background 400ms ease;
}

.expertise-card:nth-child(2) > img { object-position: 50% 42%; }
.expertise-card:nth-child(3) > img { object-position: 50% 50%; }
.expertise-card:hover > img { transform: none; filter: saturate(1.06) brightness(1.04); }
.expertise-card:hover .card-shade { background: linear-gradient(180deg, rgba(65,0,135,.12), rgba(25,0,52,.92)); }

.card-number {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 30px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
}

.expertise-card > div {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 28px;
}

.expertise-card h3 {
  margin: 0;
  font-size: clamp(26px, 2vw, 36px);
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: -.05em;
}

.expertise-card p {
  max-width: 420px;
  margin: 13px 0 20px;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  line-height: 1.7;
}

.card-link {
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.32);
  font-size: 10px;
  font-weight: 720;
}

/* Services */
.services {
  padding: 100px 0 108px;
  background: var(--white);
  scroll-margin-top: 70px;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(520px, 1.18fr);
  gap: clamp(64px, 6vw, 104px);
  align-items: start;
}

.services-intro {
  position: sticky;
  top: 118px;
}

.services-intro h2 { max-width: 620px; font-size: clamp(44px, 3.9vw, 68px); }

.services-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  height: auto;
  margin-top: 38px;
  overflow: hidden;
  background: #161619;
}

.services-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(.28) brightness(.72);
  transition: filter 500ms ease;
}

.services-visual:hover img { transform: none; filter: grayscale(.12) brightness(.82); }

.services-visual span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 11px 13px;
  background: var(--violet);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-accordion { border-top: 1px solid var(--line); }

.service-accordion details {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 92px;
}

.service-accordion summary {
  min-height: 96px;
  display: grid;
  grid-template-columns: 54px 1fr auto 28px;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  list-style: none;
}

.service-accordion summary::-webkit-details-marker { display: none; }
.service-accordion summary > span { color: var(--violet); font-family: var(--font-mono); font-size: 10px; }

.service-accordion summary strong {
  font-size: clamp(22px, 1.85vw, 31px);
  font-weight: 570;
  letter-spacing: -.04em;
}

.service-accordion summary small {
  color: #77777d;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-accordion summary > i {
  position: relative;
  width: 20px;
  height: 20px;
}

.service-accordion summary > i::before,
.service-accordion summary > i::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 1px;
  background: var(--ink);
  transition: transform 220ms ease;
}

.service-accordion summary > i::after { transform: rotate(90deg); }
.service-accordion details[open] summary > i::after { transform: rotate(0); }

.service-content {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 38px;
  padding: 0 0 30px 72px;
}

.service-content > p {
  margin: 0;
  color: #66666d;
  font-size: 12px;
  line-height: 1.75;
}

.service-content ul { margin: 0; padding: 0; list-style: none; }

.service-content li {
  position: relative;
  padding: 10px 8px 10px 20px;
  border-bottom: 1px solid rgba(14,14,16,.09);
  font-size: 11px;
  font-weight: 670;
}

.service-content li:first-child { border-top: 1px solid rgba(14,14,16,.09); }
.service-content li::before { content: ""; position: absolute; left: 0; top: 15px; width: 5px; height: 5px; background: var(--violet); }

/* Process */
.process {
  position: relative;
  min-height: 760px;
  padding: 100px 0 96px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.process-media,
.process-shade {
  position: absolute;
  inset: 0;
}

.process-media { background: var(--ink); }
.process-media img { width: 100%; height: 100%; object-fit: contain; object-position: right center; filter: grayscale(.2); }
.process-shade { background: linear-gradient(90deg, rgba(14,14,16,.98) 0%, rgba(14,14,16,.92) 48%, rgba(14,14,16,.5) 100%), linear-gradient(180deg, rgba(14,14,16,.34), rgba(14,14,16,.9)); }
.process-inner { position: relative; z-index: 2; }

.process-heading {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  grid-template-areas:
    "eyebrow title"
    "intro title";
  gap: 72px;
  align-items: end;
  margin-bottom: 54px;
}

.process-heading .eyebrow { grid-area: eyebrow; }
.process-heading h2 { grid-area: title; max-width: 840px; font-size: clamp(50px, 4.8vw, 88px); }

.process-heading > p:last-child {
  grid-area: intro;
  max-width: 440px;
  margin: 0 0 9px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.8;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.process-grid article {
  min-height: 270px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(14,14,16,.28);
  backdrop-filter: blur(5px);
}

.process-grid article > span { color: var(--violet-bright); }
.process-grid article > div { margin-top: auto; }
.process-grid h3 { margin: 0 0 16px; font-size: 22px; font-weight: 560; letter-spacing: -.035em; }
.process-grid p { margin: 0; color: rgba(255,255,255,.59); font-size: 12px; line-height: 1.75; }

/* CTA */
.project-start {
  padding: 102px 0 108px;
  background: linear-gradient(135deg, #42008e 0%, #6900dd 58%, #5500b8 100%);
  color: var(--white);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.04fr .86fr;
  gap: clamp(64px, 7vw, 118px);
  align-items: center;
}

.project-grid h2 { max-width: 830px; font-size: clamp(48px, 4.55vw, 82px); }
.project-intro { max-width: 610px; margin: 30px 0 38px; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.8; }

.project-brief { background: var(--white); color: var(--ink); box-shadow: 22px 22px 0 rgba(14,14,16,.22); }
.brief-top { padding: 17px 20px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); color: #77777d; font-family: var(--font-mono); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.project-brief ul { margin: 0; padding: 0; list-style: none; }
.project-brief li { min-height: 82px; padding: 18px 20px; display: grid; grid-template-columns: 50px 1fr; gap: 12px; align-items: center; border-bottom: 1px solid var(--line); }
.project-brief li:last-child { border-bottom: 0; }
.project-brief li > span { color: var(--violet); font-family: var(--font-mono); font-size: 9px; }
.project-brief strong { display: block; font-size: 13px; }
.project-brief small { display: block; margin-top: 5px; color: #77777d; font-size: 10px; line-height: 1.5; }



/* Project inquiry form */
#project-form { scroll-margin-top: calc(var(--jx2-fixed-top) + 96px); }
.project-form { padding: 22px 20px 24px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
.form-row-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.project-form label { display: block; }
.project-form label > span { display: block; margin-bottom: 7px; font-size: 10px; font-weight: 720; }
.project-form label b { color: var(--violet); font-weight: 800; }
.project-form input,
.project-form textarea {
  width: 100%;
  border: 1px solid rgba(14,14,16,.17);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  line-height: 1.45;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.project-form input { min-height: 46px; padding: 11px 12px; }
.project-form textarea { min-height: 112px; padding: 12px; resize: vertical; }
.project-form input:focus,
.project-form textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 2px rgba(100,0,218,.1); }
.form-submit { width: 100%; min-height: 54px; border: 0; background: var(--ink); color: #fff; cursor: pointer; }
.form-submit:hover { background: var(--violet); }
.form-fallback { margin: 14px 0 0; color: #77777d; font-size: 10px; line-height: 1.6; }
.form-fallback a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 18px 20px 0; padding: 12px 14px; font-size: 11px; line-height: 1.55; }
.form-status-success { background: #eef9f0; border: 1px solid #b8dfbf; color: #174d22; }
.form-status-error { background: #fff1f1; border: 1px solid #edbcbc; color: #7a1717; }
.form-status a { text-decoration: underline; }

/* Footer */
footer { padding: 56px 0 22px; background: var(--ink); color: var(--white); }

.footer-top-row {
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: .65fr 1.1fr .55fr .45fr;
  gap: 60px;
  align-items: start;
}

.footer-brand { width: 104px; height: 96px; overflow: hidden; }
.footer-brand img { width: 98px; }
.footer-top-row > p { max-width: 440px; margin: 4px 0 0; color: rgba(255,255,255,.73); font-size: 20px; line-height: 1.5; letter-spacing: -.03em; }
.footer-top-row nav a { display: block; margin-bottom: 13px; color: rgba(255,255,255,.55); font-size: 11px; }
.footer-top-row nav a:hover { color: var(--white); }
.footer-links { min-width: 0; }
.footer-contact { margin-top: 24px; }
.footer-contact > span { display: block; margin-bottom: 10px; color: rgba(255,255,255,.35); font-family: var(--font-mono); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.footer-contact a { display: block; max-width: 270px; margin-bottom: 8px; overflow-wrap: anywhere; color: rgba(255,255,255,.72); font-size: 11px; line-height: 1.5; }
.footer-contact a:hover { color: var(--white); }
.back-top { justify-self: end; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.34); color: rgba(255,255,255,.65); font-size: 10px; }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 28px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.35); font-family: var(--font-mono); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }


/* Fixed-header anchor safety */
#about,
#expertise,
#services,
#process,
#project-start {
  scroll-margin-top: calc(var(--jx2-fixed-top) + 90px);
}

@media (max-width: 1100px) {
  :root { --wide-shell: min(100% - 48px, 1600px); }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .header-cta { margin-right: 84px; }
  .mobile-nav { position: absolute; right: 24px; display: block; }
  .mobile-nav summary { cursor: pointer; list-style: none; padding: 11px 14px; border: 1px solid rgba(255,255,255,.42); font-size: 9px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav nav { position: absolute; top: 48px; right: 0; width: 230px; display: grid; background: var(--white); color: var(--ink); box-shadow: 0 24px 50px rgba(0,0,0,.2); }
  .mobile-nav nav a { padding: 15px 18px; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 700; }
  .hero-copy h1 { font-size: clamp(66px, 8.6vw, 96px); }
  .hero-support { grid-template-columns: 1fr; gap: 25px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 44px; }
  .manifesto-copy { grid-template-columns: 1fr 1fr; }
  .standard-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .expertise-heading { grid-template-columns: 1fr; gap: 24px; }
  .expertise-heading > div { grid-template-columns: 1.2fr .7fr; }
  .expertise-card { min-height: 0; aspect-ratio: 4 / 3; }
  .services-layout { grid-template-columns: 1fr; }
  .services-intro { position: static; }
  .services-visual { width: min(720px, 100%); height: auto; aspect-ratio: 4 / 3; }
  .process-heading {
    grid-template-columns: 1fr;
    grid-template-areas: "eyebrow" "title" "intro";
    gap: 28px;
  }
  .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .project-grid { grid-template-columns: 1fr; }
  .project-brief { max-width: 720px; }
  .footer-top-row { grid-template-columns: .7fr 1.4fr .6fr; }
  .back-top { display: none; }
}

@media (max-width: 720px) {
  :root { --wide-shell: min(100% - 28px, 1600px); }
  .site-header { min-height: 80px; padding-inline: 14px; }
  .site-header.is-scrolled { min-height: 68px; }
  .brand { width: 70px; height: 62px; }
  .brand img { width: 67px; }
  .header-cta { display: none; }
  .mobile-nav { right: 14px; }
  .hero { height: auto; min-height: 760px; }
  .hero-media { top: 80px; right: 0; bottom: auto; left: 0; height: auto; aspect-ratio: 16 / 9; }
  .hero-media img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(14,14,16,.24) 80px, rgba(14,14,16,.12) calc(80px + 32vw), #0e0e10 calc(80px + 56.25vw), #0e0e10 100%); }
  .hero-layout { min-height: 760px; align-items: flex-start; padding: calc(122px + 56.25vw) 0 102px; }
  .hero-copy h1 { font-size: clamp(54px, 17vw, 82px); line-height: .88; }
  .hero-eyebrow { margin-bottom: 20px; }
  .hero-support { margin-top: 24px; gap: 22px; }
  .hero-support > p { font-size: 13px; line-height: 1.65; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .hero-stamp { display: none; }
  .scroll-cue { left: 14px; bottom: 18px; }
  .manifesto { padding-top: 86px; }
  .manifesto-grid { gap: 34px; padding-bottom: 72px; }
  .manifesto h2, .expertise-heading h2, .services-intro h2, .process-heading h2, .project-grid h2 { font-size: clamp(43px, 12.4vw, 62px); line-height: .98; }
  .manifesto-copy { grid-template-columns: 1fr; gap: 18px; }
  .standard-grid { grid-template-columns: 1fr; }
  .standard-grid article { min-height: 215px; }
  .capability-ticker { padding: 20px 0; }
  .capability-ticker span { font-size: 15px; }
  .expertise { padding-top: 84px; }
  .expertise-heading { padding-bottom: 42px; }
  .expertise-heading > div { grid-template-columns: 1fr; gap: 26px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: 0; aspect-ratio: 4 / 3; }
  .services { padding: 88px 0 94px; }
  .services-visual { width: 100%; height: auto; aspect-ratio: 4 / 3; margin-top: 34px; }
  .service-accordion summary { min-height: 92px; grid-template-columns: 34px 1fr 20px; gap: 12px; }
  .service-accordion summary small { display: none; }
  .service-accordion summary strong { font-size: 21px; }
  .service-content { grid-template-columns: 1fr; gap: 22px; padding: 0 0 36px 46px; }
  .process { min-height: auto; padding: 88px 0 94px; }
  .process-heading { margin-bottom: 44px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 240px; padding: 24px; }
  .project-start { padding: 88px 0 98px; }
  .project-grid { gap: 56px; }
  .project-brief { margin-right: 10px; box-shadow: 10px 10px 0 rgba(14,14,16,.22); }
  .button-light { width: 100%; }

  .form-row-two { grid-template-columns: 1fr; }
  .project-form { padding: 18px 16px 20px; }
  .form-status { margin: 16px 16px 0; }
  footer { padding-top: 58px; }
  .footer-top-row { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-top-row > p { grid-column: 1 / -1; grid-row: 2; font-size: 18px; }
  .footer-links { justify-self: end; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }

  /* v3 mobile refinements */
  .mobile-nav nav {
    top: 48px;
    width: min(320px, calc(100vw - 28px));
  }
  .mobile-nav[open] summary {
    background: rgba(255,255,255,.08);
  }
  .standard-grid article {
    min-height: 172px;
    padding: 22px 24px 24px;
  }
  .expertise-card {
    height: 330px;
    min-height: 330px;
    aspect-ratio: auto;
  }
  .expertise-card > div {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .card-number { top: 20px; left: 20px; }
  .expertise-card h3 { font-size: 29px; }
  .expertise-card p { margin: 10px 0 14px; line-height: 1.58; }
  .card-link { padding-top: 12px; }
  .process-grid article {
    min-height: 205px;
    padding: 22px;
  }
  .process-grid h3 { margin-bottom: 12px; }
  .project-grid { gap: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-media { clip-path: none; }
  .hero-copy h1 i { transform: none; }
  .site-loader { display: none; }
}

@media (scripting: none) {
  .site-loader { display: none; }
  .hero-media { clip-path: none; }
  .hero-copy h1 i { transform: none; }
}



/* v8 launch-readiness: accessibility and keyboard focus */
.skip-link {
  position: fixed; left: 16px; top: 8px; z-index: 100000;
  padding: 10px 14px; background: #fff; color: #0b0b0d;
  font-weight: 700; text-decoration: none; transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid #8f36ff; outline-offset: 3px;
}
.project-form input:focus-visible, .project-form textarea:focus-visible {
  outline: 2px solid #8f36ff; outline-offset: 1px;
}

/* ==========================================================
   V10 — Premium civil engineering redesign
   Black / warm white / technical gray, with violet as accent.
   ========================================================== */
.v10-site {
  --v10-paper: #f2f1ed;
  --v10-paper-2: #e8e7e2;
  --v10-ink: #0b0c0e;
  --v10-steel: #63676c;
  --v10-line: rgba(11,12,14,.16);
  --v10-accent: #7230c7;
  --v10-accent-soft: #b887ef;
  background: var(--v10-paper);
}

.v10-site .eyebrow { color: var(--v10-accent); }
.v10-site .eyebrow-light { color: #cdaafa; }
.v10-site .button { border-radius: 0; }
.v10-site .site-header { border-bottom-color: rgba(255,255,255,.19); }
.v10-site .site-header.is-scrolled { background: rgba(10,11,13,.94); }
.v10-site .desktop-nav a::after { background: var(--v10-accent-soft); height: 1px; }
.v10-site .header-cta:hover { background: var(--v10-accent); }

/* Hero */
.v10-hero {
  position: relative;
  min-height: 860px;
  height: min(920px, 100svh);
  overflow: hidden;
  background: var(--v10-ink);
  color: #fff;
}
.v10-hero-media { position: absolute; inset: 0; }
.v10-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; filter: saturate(.74) contrast(1.04); transform: scale(1.015); }
.v10-hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,9,11,.98) 0%, rgba(8,9,11,.9) 31%, rgba(8,9,11,.52) 56%, rgba(8,9,11,.16) 100%),
    linear-gradient(180deg, rgba(8,9,11,.14) 0%, rgba(8,9,11,.05) 62%, rgba(8,9,11,.64) 100%);
}
.v10-tech-grid {
  position: absolute; inset: 92px 0 0; opacity: .26; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
    repeating-radial-gradient(ellipse at 86% 62%, transparent 0 42px, rgba(198,164,239,.17) 43px 44px, transparent 45px 78px);
  background-size: 72px 72px, 72px 72px, auto;
  mask-image: linear-gradient(90deg, transparent 0 47%, #000 66%, #000 100%);
}
.v10-hero-inner {
  position: relative; z-index: 2; height: 100%; padding-top: 150px; padding-bottom: 84px;
  display: grid; grid-template-columns: minmax(0,1.42fr) minmax(300px,.48fr); gap: 54px; align-items: end;
}
.v10-hero-copy { max-width: 1120px; padding-bottom: 58px; }
.v10-hero-copy .eyebrow { margin-bottom: 30px; }
.v10-hero-copy h1 {
  margin: 0; max-width: 1120px; color: #fff; font-size: clamp(70px, 6.35vw, 118px); line-height: .9; letter-spacing: -.064em; font-weight: 650;
}
.v10-hero-copy h1 em { color: #fff; font-style: normal; position: relative; white-space: nowrap; }
.v10-hero-copy h1 em::after { content:""; position:absolute; left:3px; right:0; bottom:-7px; height:3px; background:var(--v10-accent-soft); transform-origin:left; animation:v10-draw 1.15s 1.15s cubic-bezier(.2,.8,.2,1) both; }
@keyframes v10-draw { from { transform:scaleX(0); } to { transform:scaleX(1); } }
.v10-hero-lede { max-width: 660px; margin: 38px 0 0; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.8; }
.v10-hero-actions { margin-top: 34px; display:flex; align-items:center; gap:30px; }
.v10-button-primary { background:#fff; color:var(--v10-ink); min-width:180px; }
.v10-button-primary:hover { background:var(--v10-accent); color:#fff; }
.v10-text-link { padding:18px 0 14px; border-bottom:1px solid rgba(255,255,255,.36); display:inline-flex; gap:48px; color:#fff; font-size:11px; font-weight:720; }
.v10-text-link:hover { border-color:var(--v10-accent-soft); }
.v10-hero-hud { align-self:end; margin-bottom: 65px; border-top:1px solid rgba(255,255,255,.34); border-bottom:1px solid rgba(255,255,255,.18); padding:18px 0 20px; }
.v10-hud-top { display:flex; justify-content:space-between; gap:18px; margin-bottom:25px; color:rgba(255,255,255,.47); font-family:var(--font-mono); font-size:8px; letter-spacing:.16em; text-transform:uppercase; }
.v10-hero-hud strong { display:block; max-width:330px; font-size:25px; line-height:1.15; letter-spacing:-.035em; font-weight:600; }
.v10-hud-steps { margin-top:26px; display:flex; align-items:center; gap:9px; color:rgba(255,255,255,.52); font-family:var(--font-mono); font-size:7px; letter-spacing:.08em; text-transform:uppercase; }
.v10-hud-steps i { flex:1; height:1px; background:rgba(255,255,255,.24); }
.v10-scroll-cue { position:absolute; z-index:3; left:clamp(28px,4vw,72px); bottom:28px; display:flex; align-items:center; gap:18px; color:rgba(255,255,255,.45); font-family:var(--font-mono); font-size:7px; letter-spacing:.17em; text-transform:uppercase; }
.v10-scroll-cue i { width:55px; height:1px; background:rgba(255,255,255,.3); }

/* Credibility strip */
.v10-credibility { background:#fff; border-bottom:1px solid var(--v10-line); }
.v10-cred-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); }
.v10-cred-grid article { min-height:185px; padding:28px 26px 30px; border-left:1px solid var(--v10-line); display:flex; flex-direction:column; }
.v10-cred-grid article:last-child { border-right:1px solid var(--v10-line); }
.v10-cred-grid article > span { color:var(--v10-accent); font-family:var(--font-mono); font-size:8px; }
.v10-cred-grid h2 { margin:auto 0 8px; font-size:18px; letter-spacing:-.035em; font-weight:650; }
.v10-cred-grid p { margin:0; color:#66696e; font-size:11px; line-height:1.65; }

/* Company / editorial intro */
.v10-company { padding:112px 0 108px; background:var(--v10-paper); }
.v10-section-head { display:grid; grid-template-columns:minmax(0,1.25fr) minmax(300px,.65fr); gap:100px; align-items:end; }
.v10-section-head h2 { margin:0; max-width:900px; font-size:clamp(58px,5.6vw,104px); line-height:.94; letter-spacing:-.062em; font-weight:620; }
.v10-section-copy { padding-bottom:7px; }
.v10-section-copy p { margin:0 0 22px; color:#5f6267; font-size:13px; line-height:1.85; }
.v10-principles { margin-top:68px; border-top:1px solid var(--v10-line); border-bottom:1px solid var(--v10-line); display:grid; grid-template-columns:repeat(3,1fr); }
.v10-principles > div { min-height:205px; padding:26px 30px; border-right:1px solid var(--v10-line); }
.v10-principles > div:first-child { border-left:1px solid var(--v10-line); }
.v10-principles span { color:var(--v10-accent); font-family:var(--font-mono); font-size:8px; }
.v10-principles strong { display:block; margin:60px 0 13px; font-size:22px; letter-spacing:-.04em; }
.v10-principles p { margin:0; max-width:370px; color:#686b70; font-size:11px; line-height:1.7; }

/* Services */
.v10-services { padding:112px 0 122px; background:#fff; }
.v10-services-head { display:grid; grid-template-columns:1.2fr .55fr; gap:100px; align-items:end; }
.v10-services-head h2 { margin:0; max-width:900px; font-size:clamp(58px,5.2vw,96px); line-height:.95; letter-spacing:-.06em; font-weight:620; }
.v10-services-head > p { margin:0 0 8px; color:#66696e; font-size:13px; line-height:1.85; }
.v10-service-cards { margin-top:62px; display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--v10-line); border-bottom:1px solid var(--v10-line); }
.v10-service-card { min-height:340px; padding:26px 26px 30px; border-left:1px solid var(--v10-line); display:flex; flex-direction:column; position:relative; transition:background .25s ease,color .25s ease; }
.v10-service-card:last-child { border-right:1px solid var(--v10-line); }
.v10-service-card::after { content:""; position:absolute; inset:0; pointer-events:none; opacity:0; background:repeating-linear-gradient(90deg,transparent 0 31px,rgba(255,255,255,.06) 32px 33px); transition:opacity .25s ease; }
.v10-service-card:hover { background:var(--v10-ink); color:#fff; }
.v10-service-card:hover::after { opacity:1; }
.v10-card-index { color:var(--v10-accent); font-family:var(--font-mono); font-size:8px; letter-spacing:.1em; }
.v10-service-card:hover .v10-card-index { color:var(--v10-accent-soft); }
.v10-service-card h3 { margin:auto 0 22px; font-size:30px; line-height:1.02; letter-spacing:-.05em; font-weight:610; }
.v10-service-card p { margin:0; min-height:58px; color:#66696e; font-size:11px; line-height:1.65; transition:color .25s ease; }
.v10-service-card:hover p { color:rgba(255,255,255,.65); }
.v10-card-link { margin-top:26px; padding-top:15px; border-top:1px solid var(--v10-line); font-size:10px; font-weight:750; }
.v10-service-card:hover .v10-card-link { border-color:rgba(255,255,255,.18); }
.v10-service-detail { margin-top:92px; display:grid; grid-template-columns:.82fr 1.18fr; gap:85px; align-items:start; }
.v10-service-visual { position:sticky; top:calc(var(--jx2-fixed-top) + 100px); height:610px; overflow:hidden; background:#111; }
.v10-service-visual img { width:100%; height:100%; object-fit:cover; filter:grayscale(.72) contrast(1.03) brightness(.72); }
.v10-service-visual::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 45%,rgba(9,10,12,.7)); }
.v10-plan-overlay { position:absolute; z-index:2; left:28px; right:28px; bottom:24px; padding-top:16px; border-top:1px solid rgba(255,255,255,.38); color:#fff; display:grid; grid-template-columns:1fr auto; gap:4px 20px; align-items:end; }
.v10-plan-overlay span { font-family:var(--font-mono); font-size:7px; letter-spacing:.16em; }
.v10-plan-overlay strong { grid-row:1 / span 2; grid-column:2; font-size:58px; line-height:.8; font-weight:570; letter-spacing:-.06em; }
.v10-plan-overlay small { color:rgba(255,255,255,.56); font-family:var(--font-mono); font-size:7px; letter-spacing:.13em; text-transform:uppercase; }
.v10-accordion { border-top-color:var(--v10-line); }
.v10-accordion summary > span { color:var(--v10-accent); }
.v10-accordion .service-content li::before { background:var(--v10-accent); }

/* Project types */
.v10-project-types { padding:112px 0 122px; background:var(--v10-ink); color:#fff; position:relative; }
.v10-project-types::before { content:""; position:absolute; inset:0; pointer-events:none; opacity:.16; background-image:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size:72px 72px; mask-image:linear-gradient(90deg,transparent,#000 35%,#000); }
.v10-project-types > * { position:relative; z-index:1; }
.v10-section-head-dark .v10-section-copy p { color:rgba(255,255,255,.57); }
.v10-type-grid { margin-top:64px; display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid rgba(255,255,255,.18); }
.v10-type-grid article { min-height:235px; padding:28px 30px 30px; border-right:1px solid rgba(255,255,255,.18); border-bottom:1px solid rgba(255,255,255,.18); }
.v10-type-grid article:nth-child(3n+1) { border-left:1px solid rgba(255,255,255,.18); }
.v10-type-grid span { color:var(--v10-accent-soft); font-family:var(--font-mono); font-size:8px; }
.v10-type-grid h3 { margin:88px 0 14px; font-size:25px; letter-spacing:-.045em; font-weight:580; }
.v10-type-grid p { margin:0; max-width:390px; color:rgba(255,255,255,.56); font-size:11px; line-height:1.7; }

/* Field story / Why JX2 */
.v10-field-story { display:grid; grid-template-columns:1fr 1fr; min-height:700px; background:#fff; }
.v10-field-media { position:relative; overflow:hidden; }
.v10-field-media img { width:100%; height:100%; object-fit:cover; filter:saturate(.68) contrast(1.02); }
.v10-field-media::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(10,11,13,.05),rgba(10,11,13,.28)); }
.v10-field-tag { position:absolute; z-index:2; left:34px; bottom:28px; color:#fff; font-family:var(--font-mono); font-size:8px; letter-spacing:.16em; }
.v10-field-copy { padding:78px clamp(42px,6vw,110px); display:flex; flex-direction:column; justify-content:center; }
.v10-field-copy h2 { margin:0; max-width:640px; font-size:clamp(52px,4.7vw,86px); line-height:.94; letter-spacing:-.06em; font-weight:620; }
.v10-reasons { margin-top:52px; border-top:1px solid var(--v10-line); }
.v10-reasons article { padding:23px 0; display:grid; grid-template-columns:48px 1fr; gap:14px; border-bottom:1px solid var(--v10-line); }
.v10-reasons article > span { color:var(--v10-accent); font-family:var(--font-mono); font-size:8px; padding-top:5px; }
.v10-reasons h3 { margin:0 0 7px; font-size:16px; letter-spacing:-.025em; }
.v10-reasons p { margin:0; color:#686b70; font-size:11px; line-height:1.7; }

/* Process timeline */
.v10-process { padding:112px 0 124px; background:#101114; color:#fff; }
.v10-process-head { display:grid; grid-template-columns:.45fr 1.1fr .55fr; gap:55px; align-items:end; }
.v10-process-head .eyebrow { margin:0 0 10px; }
.v10-process-head h2 { margin:0; font-size:clamp(58px,5.8vw,104px); line-height:.92; letter-spacing:-.06em; font-weight:620; }
.v10-process-head > p:last-child { margin:0 0 7px; color:rgba(255,255,255,.58); font-size:12px; line-height:1.75; }
.v10-timeline { position:relative; margin-top:72px; display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,.19); }
.v10-timeline::after { content:""; position:absolute; top:-1px; left:0; width:100%; height:2px; background:var(--v10-accent-soft); transform:scaleX(0); transform-origin:left; transition:transform 1.1s cubic-bezier(.2,.8,.2,1); }
.v10-timeline.is-visible::after { transform:scaleX(1); }
.v10-timeline article { min-height:275px; padding:27px 28px 30px; border-left:1px solid rgba(255,255,255,.16); display:flex; flex-direction:column; }
.v10-timeline article:last-child { border-right:1px solid rgba(255,255,255,.16); }
.v10-timeline span { color:var(--v10-accent-soft); font-family:var(--font-mono); font-size:8px; }
.v10-timeline h3 { margin:auto 0 15px; font-size:26px; letter-spacing:-.045em; font-weight:590; }
.v10-timeline p { margin:0; color:rgba(255,255,255,.57); font-size:11px; line-height:1.7; }

/* Project intake */
.v10-project-start { padding:112px 0 122px; background:var(--v10-paper); color:var(--v10-ink); }
.v10-project-grid { display:grid; grid-template-columns:.72fr 1.05fr; gap:105px; align-items:start; }
.v10-project-copy { position:sticky; top:calc(var(--jx2-fixed-top) + 110px); }
.v10-project-copy h2 { margin:0; max-width:720px; font-size:clamp(56px,5.2vw,96px); line-height:.94; letter-spacing:-.06em; font-weight:620; }
.v10-project-copy > p:not(.eyebrow) { max-width:520px; margin:30px 0 0; color:#66696e; font-size:13px; line-height:1.8; }
.v10-contact-rail { margin-top:55px; padding-top:22px; border-top:1px solid var(--v10-line); display:grid; grid-template-columns:70px 1fr; gap:12px 18px; align-items:start; }
.v10-contact-rail span { color:#85888d; font-family:var(--font-mono); font-size:7px; letter-spacing:.13em; }
.v10-contact-rail a { font-size:12px; overflow-wrap:anywhere; }
.v10-project-brief { box-shadow:none; border:1px solid var(--v10-line); }
.v10-project-brief .brief-top { border-top:3px solid var(--v10-accent); }
.v10-project-start .project-form input:focus,
.v10-project-start .project-form textarea:focus { border-color:var(--v10-accent); box-shadow:0 0 0 2px rgba(114,48,199,.1); }
.v10-project-start .form-submit:hover { background:var(--v10-accent); }

/* Footer */
.v10-footer { padding:70px 0 22px; background:#0a0b0d; }
.v10-footer-main { padding-bottom:55px; display:grid; grid-template-columns:1.4fr .55fr .8fr .35fr; gap:60px; align-items:start; }
.v10-footer-main > div:first-child p { max-width:430px; margin:24px 0 0; color:rgba(255,255,255,.68); font-size:18px; line-height:1.55; letter-spacing:-.025em; }
.v10-footer-column > span { display:block; margin-bottom:18px; color:rgba(255,255,255,.34); font-family:var(--font-mono); font-size:7px; letter-spacing:.15em; text-transform:uppercase; }
.v10-footer-column a { display:block; margin-bottom:12px; color:rgba(255,255,255,.65); font-size:11px; line-height:1.5; overflow-wrap:anywhere; }
.v10-footer-column a:hover { color:#fff; }

#company,#services,#project-types,#process,#project-start,#civil-engineering,#planning-compliance,#infrastructure,#land-surveying { scroll-margin-top:calc(var(--jx2-fixed-top) + 88px); }

@media (max-width:1450px) and (min-width:1101px) {
  .v10-hero-inner { grid-template-columns:minmax(0,1.36fr) minmax(285px,.5fr); gap:44px; }
  .v10-hero-copy h1 { font-size:clamp(68px,6.15vw,104px); }
  .v10-hero-hud strong { font-size:22px; }
}

@media (max-width:1100px) {
  .v10-hero { height:auto; min-height:850px; }
  .v10-hero-inner { grid-template-columns:1fr; align-items:end; gap:35px; padding-top:150px; }
  .v10-hero-copy { padding-bottom:0; }
  .v10-hero-hud { width:min(520px,100%); margin:0 0 35px; }
  .v10-cred-grid { grid-template-columns:repeat(2,1fr); }
  .v10-cred-grid article:nth-child(2) { border-right:1px solid var(--v10-line); }
  .v10-section-head,.v10-services-head { grid-template-columns:1fr; gap:35px; }
  .v10-section-copy { max-width:720px; }
  .v10-principles { grid-template-columns:1fr; }
  .v10-principles > div { min-height:190px; border-left:1px solid var(--v10-line); border-bottom:1px solid var(--v10-line); }
  .v10-principles > div:last-child { border-bottom:0; }
  .v10-principles strong { margin-top:45px; }
  .v10-service-cards { grid-template-columns:repeat(2,1fr); }
  .v10-service-card:nth-child(2) { border-right:1px solid var(--v10-line); }
  .v10-service-detail { grid-template-columns:1fr; }
  .v10-service-visual { position:relative; top:auto; width:min(760px,100%); height:auto; aspect-ratio:4/3; }
  .v10-type-grid { grid-template-columns:repeat(2,1fr); }
  .v10-type-grid article:nth-child(3n+1) { border-left:0; }
  .v10-type-grid article:nth-child(odd) { border-left:1px solid rgba(255,255,255,.18); }
  .v10-field-story { grid-template-columns:1fr; }
  .v10-field-media { min-height:590px; }
  .v10-process-head { grid-template-columns:1fr; gap:28px; }
  .v10-timeline { grid-template-columns:repeat(2,1fr); }
  .v10-timeline article:nth-child(2) { border-right:1px solid rgba(255,255,255,.16); }
  .v10-project-grid { grid-template-columns:1fr; gap:65px; }
  .v10-project-copy { position:static; }
  .v10-footer-main { grid-template-columns:1fr 1fr 1fr; }
  .v10-footer-main .back-top { display:none; }
}

@media (max-width:720px) {
  .v10-hero { min-height:780px; }
  .v10-hero-media { top:80px; height:235px; }
  .v10-hero-media img { object-fit:cover; object-position:center; }
  .v10-hero-shade { background:linear-gradient(180deg,rgba(8,9,11,.16) 80px,rgba(8,9,11,.12) 280px,#090a0c 315px,#090a0c 100%); }
  .v10-tech-grid { display:none; }
  .v10-hero-inner { padding:360px 0 82px; display:block; }
  .v10-hero-copy { max-width:none; }
  .v10-hero-copy .eyebrow { margin-bottom:18px; }
  .v10-hero-copy h1 { font-size:clamp(49px,14.6vw,68px); line-height:.91; letter-spacing:-.06em; }
  .v10-hero-copy h1 br { display:none; }
  .v10-hero-copy h1 em { white-space:normal; }
  .v10-hero-lede { margin-top:24px; font-size:12px; line-height:1.7; }
  .v10-hero-actions { margin-top:26px; flex-direction:column; align-items:stretch; gap:10px; }
  .v10-button-primary { width:100%; }
  .v10-text-link { justify-content:space-between; }
  .v10-hero-hud { display:none; }
  .v10-scroll-cue { left:14px; bottom:15px; }
  .v10-cred-grid { width:100%; grid-template-columns:1fr; }
  .v10-cred-grid article { min-height:155px; border-right:0!important; border-left:0; border-bottom:1px solid var(--v10-line); padding-inline:20px; }
  .v10-cred-grid h2 { margin-top:48px; }
  .v10-company,.v10-services,.v10-project-types,.v10-process,.v10-project-start { padding-top:88px; padding-bottom:94px; }
  .v10-section-head h2,.v10-services-head h2,.v10-field-copy h2,.v10-process-head h2,.v10-project-copy h2 { font-size:clamp(44px,12vw,60px); line-height:.96; }
  .v10-principles { margin-top:58px; }
  .v10-principles > div { min-height:165px; padding:22px 20px; }
  .v10-principles strong { margin-top:34px; }
  .v10-service-cards { margin-top:50px; grid-template-columns:1fr; }
  .v10-service-card { min-height:275px; border-right:1px solid var(--v10-line)!important; }
  .v10-service-card h3 { font-size:28px; }
  .v10-service-card p { min-height:0; }
  .v10-service-detail { margin-top:75px; gap:52px; }
  .v10-service-visual { width:100%; aspect-ratio:4/3; }
  .v10-plan-overlay { left:18px; right:18px; bottom:18px; }
  .v10-plan-overlay strong { font-size:44px; }
  .v10-accordion .service-accordion summary { min-height:88px; }
  .v10-type-grid { margin-top:55px; grid-template-columns:1fr; }
  .v10-type-grid article { min-height:210px; border-left:1px solid rgba(255,255,255,.18)!important; }
  .v10-type-grid h3 { margin-top:72px; }
  .v10-field-media { min-height:420px; }
  .v10-field-copy { padding:78px 24px; }
  .v10-reasons { margin-top:48px; }
  .v10-process-head { gap:20px; }
  .v10-timeline { margin-top:55px; grid-template-columns:1fr; }
  .v10-timeline article { min-height:190px; border-right:1px solid rgba(255,255,255,.16); }
  .v10-timeline h3 { margin-top:62px; }
  .v10-project-grid { gap:48px; }
  .v10-contact-rail { grid-template-columns:58px 1fr; }
  .v10-project-brief { margin-right:0; }
  .v10-footer-main { grid-template-columns:1fr 1fr; gap:42px 24px; }
  .v10-footer-main > div:first-child { grid-column:1/-1; }
}

/* =========================================================
   JX2 V12 — restrained AEC / engineering consultancy system
   ========================================================= */
.v12-site {
  --v12-ink:#151719;
  --v12-ink-2:#25282b;
  --v12-paper:#f6f5f1;
  --v12-white:#fff;
  --v12-muted:#62676c;
  --v12-line:#d9d8d2;
  --v12-purple:#6d36b3;
  --v12-sand:#e9e6de;
  background:var(--v12-paper);
  color:var(--v12-ink);
}
.v12-site .wide-shell { width:min(1500px,calc(100% - 96px)); }
.v12-site h1,.v12-site h2,.v12-site h3,.v12-site p { margin-top:0; }
.v12-site h1,.v12-site h2,.v12-site h3 { letter-spacing:-.045em; }
.v12-site p { color:var(--v12-muted); line-height:1.7; }
.v12-label,.v12-kicker { margin:0 0 18px; color:var(--v12-purple); font-family:var(--font-mono); font-size:9px; letter-spacing:.16em; text-transform:uppercase; }

/* Header */
.v12-header { min-height:84px; padding-inline:clamp(28px,4vw,70px); background:linear-gradient(180deg,rgba(10,12,13,.56),rgba(10,12,13,.04)); }
.v12-header.is-scrolled { min-height:68px; background:rgba(17,19,21,.95); }
.v12-header .brand { width:72px; height:64px; }
.v12-header .brand img { width:66px; }
.v12-header .desktop-nav { gap:34px; font-size:11px; }
.v12-header .desktop-nav a::after { background:#fff; height:1px; }
.v12-header .header-cta { min-height:44px; padding-inline:18px; background:#fff; color:#17191a; }
.v12-header .header-cta:hover { background:var(--v12-purple); color:#fff; }

/* Hero */
.v12-hero { position:relative; min-height:760px; height:min(830px,78vh); color:#fff; background:#111315; overflow:hidden; }
.v12-hero-media,.v12-hero-overlay { position:absolute; inset:0; }
.v12-hero-media img { width:100%; height:100%; object-fit:cover; object-position:center 48%; }
.v12-hero-overlay { background:linear-gradient(90deg,rgba(9,11,12,.86) 0%,rgba(9,11,12,.68) 35%,rgba(9,11,12,.28) 68%,rgba(9,11,12,.12) 100%),linear-gradient(180deg,rgba(9,11,12,.38),transparent 30%,rgba(9,11,12,.18)); }
.v12-hero-grid { position:relative; z-index:2; height:100%; padding-top:150px; padding-bottom:70px; display:grid; grid-template-columns:minmax(0,1.25fr) minmax(300px,.55fr); gap:90px; align-items:end; }
.v12-hero-copy { max-width:780px; }
.v12-kicker { color:#d8c5ef; }
.v12-hero h1 { max-width:760px; margin:0; color:#fff; font-size:clamp(58px,5.45vw,86px); line-height:.98; font-weight:650; }
.v12-hero-lede { max-width:690px; margin:28px 0 0; color:rgba(255,255,255,.77)!important; font-size:16px; line-height:1.7!important; }
.v12-hero-actions { margin-top:34px; display:flex; gap:12px; flex-wrap:wrap; }
.v12-btn { min-height:54px; padding:0 22px; display:inline-flex; align-items:center; justify-content:space-between; gap:42px; border:1px solid rgba(255,255,255,.52); color:#fff; font-size:12px; font-weight:750; transition:.2s ease; }
.v12-btn-primary { background:#fff; color:#141617; border-color:#fff; }
.v12-btn-primary:hover { background:var(--v12-purple); border-color:var(--v12-purple); color:#fff; }
.v12-btn-ghost:hover { background:#fff; color:#141617; }
.v12-hero-panel { margin-bottom:8px; padding:26px 28px 20px; border-top:1px solid rgba(255,255,255,.7); border-bottom:1px solid rgba(255,255,255,.28); background:rgba(10,12,13,.2); backdrop-filter:blur(3px); }
.v12-hero-panel > p { margin:0 0 18px; color:rgba(255,255,255,.54)!important; font-family:var(--font-mono); font-size:8px; letter-spacing:.15em; text-transform:uppercase; }
.v12-hero-panel ol { margin:0; padding:0; list-style:none; }
.v12-hero-panel li { padding:12px 0; display:grid; grid-template-columns:34px 1fr; gap:12px; border-top:1px solid rgba(255,255,255,.15); }
.v12-hero-panel li:first-child { border-top:0; }
.v12-hero-panel li span { color:#d8c5ef; font-family:var(--font-mono); font-size:8px; }
.v12-hero-panel li strong { font-size:13px; font-weight:650; }

/* Discipline strip */
.v12-discipline-strip { background:#fff; border-bottom:1px solid var(--v12-line); }
.v12-strip-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.v12-strip-grid > div { min-height:122px; padding:24px 28px; display:grid; grid-template-columns:34px 1fr; grid-template-rows:auto auto; column-gap:14px; align-content:center; border-left:1px solid var(--v12-line); }
.v12-strip-grid > div:last-child { border-right:1px solid var(--v12-line); }
.v12-strip-grid span { grid-row:1/3; color:var(--v12-purple); font-family:var(--font-mono); font-size:8px; }
.v12-strip-grid strong { font-size:17px; font-weight:700; letter-spacing:-.025em; }
.v12-strip-grid small { margin-top:5px; color:#74787c; font-size:11px; }

/* Common section heading */
.v12-intro,.v12-services,.v12-detail-services,.v12-process,.v12-contact { padding:110px 0; }
.v12-intro-grid,.v12-section-heading { display:grid; grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr); gap:100px; align-items:end; }
.v12-intro h2,.v12-section-heading h2,.v12-contact h2 { max-width:850px; margin:0; font-size:clamp(48px,4.5vw,70px); line-height:1.02; font-weight:620; }
.v12-intro-copy { max-width:560px; }
.v12-intro-copy p { margin-bottom:16px; font-size:15px; }
.v12-section-heading > p { max-width:520px; margin-bottom:3px; font-size:14px; }

/* Services overview */
.v12-services { background:#fff; border-top:1px solid var(--v12-line); border-bottom:1px solid var(--v12-line); }
.v12-service-grid { margin-top:58px; display:grid; grid-template-columns:repeat(2,1fr); border-top:1px solid var(--v12-line); border-left:1px solid var(--v12-line); }
.v12-service-card { min-height:365px; display:grid; grid-template-columns:42% 58%; border-right:1px solid var(--v12-line); border-bottom:1px solid var(--v12-line); background:#fff; overflow:hidden; transition:background .22s ease; }
.v12-service-card:hover { background:#faf9f6; }
.v12-card-media { min-height:100%; overflow:hidden; background:#ddd; }
.v12-card-media img { width:100%; height:100%; object-fit:cover; transition:transform .55s cubic-bezier(.2,.7,.2,1); }
.v12-service-card:hover .v12-card-media img { transform:scale(1.025); }
.v12-card-body { padding:34px; display:flex; flex-direction:column; }
.v12-card-body > span { color:var(--v12-purple); font-family:var(--font-mono); font-size:8px; }
.v12-card-body h3 { margin:58px 0 12px; font-size:30px; line-height:1.05; font-weight:650; }
.v12-card-body p { margin-bottom:26px; font-size:12px; line-height:1.65; }
.v12-card-body a { margin-top:auto; padding-top:16px; border-top:1px solid var(--v12-line); font-size:11px; font-weight:750; }
.v12-service-card-text { grid-template-columns:1fr; background:var(--v12-paper); }
.v12-service-card-text .v12-card-body { padding:42px; }
.v12-service-card-text .v12-card-body h3 { margin-top:82px; font-size:36px; max-width:390px; }

/* Project support */
.v12-project-support { padding:110px 0 120px; background:#151719; color:#fff; }
.v12-heading-light h2 { color:#fff; }
.v12-heading-light > p { color:rgba(255,255,255,.57)!important; }
.v12-project-support .v12-label { color:#c5a8e4; }
.v12-project-grid { margin-top:60px; display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.v12-project-card { position:relative; min-height:480px; background:#24272a; overflow:hidden; }
.v12-project-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:brightness(.62); transition:transform .55s ease,filter .3s ease; }
.v12-project-card:hover img { transform:scale(1.025); filter:brightness(.72); }
.v12-project-card > div { position:absolute; inset:auto 0 0; padding:32px; background:linear-gradient(180deg,transparent,rgba(12,14,15,.88)); }
.v12-project-card span { color:#dac6ef; font-family:var(--font-mono); font-size:8px; }
.v12-project-card h3 { margin:48px 0 10px; color:#fff; font-size:28px; font-weight:650; }
.v12-project-card p { margin:0; color:rgba(255,255,255,.69)!important; font-size:12px; }

/* Detailed services */
.v12-detail-services { background:#fff; }
.v12-detail-grid { display:grid; grid-template-columns:minmax(320px,.72fr) minmax(0,1.28fr); gap:90px; align-items:start; }
.v12-detail-intro { position:sticky; top:calc(var(--jx2-fixed-top) + 96px); }
.v12-detail-intro h2 { margin:0 0 16px; font-size:48px; font-weight:620; }
.v12-detail-intro > p:last-of-type { max-width:420px; font-size:13px; }
.v12-plan-image { margin-top:32px; width:min(520px,100%); aspect-ratio:4/3; overflow:hidden; }
.v12-plan-image img { width:100%; height:100%; object-fit:cover; filter:grayscale(.2); }
.v12-accordion.service-accordion details { border-top:1px solid var(--v12-line); }
.v12-accordion.service-accordion details:last-child { border-bottom:1px solid var(--v12-line); }
.v12-accordion.service-accordion summary { min-height:102px; grid-template-columns:48px 1fr auto 26px; }
.v12-accordion.service-accordion summary strong { font-size:25px; font-weight:640; }
.v12-accordion .service-content { grid-template-columns:220px 1fr; gap:36px; padding:0 0 36px 48px; }
.v12-accordion .service-content p { color:var(--v12-muted); font-size:12px; }

/* Approach */
.v12-why { display:grid; grid-template-columns:1fr 1fr; min-height:720px; background:var(--v12-paper); border-top:1px solid var(--v12-line); border-bottom:1px solid var(--v12-line); }
.v12-why-media { overflow:hidden; }
.v12-why-media img { width:100%; height:100%; object-fit:cover; }
.v12-why-copy { padding:90px clamp(50px,7vw,120px); align-self:center; }
.v12-why-copy h2 { max-width:640px; margin:0; font-size:clamp(48px,4.2vw,66px); line-height:1.02; font-weight:620; }
.v12-reasons { margin-top:46px; border-top:1px solid var(--v12-line); }
.v12-reasons article { padding:22px 0; display:grid; grid-template-columns:42px 1fr; gap:16px; border-bottom:1px solid var(--v12-line); }
.v12-reasons article > span { color:var(--v12-purple); font-family:var(--font-mono); font-size:8px; padding-top:4px; }
.v12-reasons h3 { margin:0 0 6px; font-size:17px; font-weight:700; }
.v12-reasons p { margin:0; font-size:12px; }

/* Process */
.v12-process { background:#fff; }
.v12-process-grid { margin:58px 0 0; padding:0; display:grid; grid-template-columns:repeat(4,1fr); list-style:none; border-top:1px solid var(--v12-ink); border-left:1px solid var(--v12-line); }
.v12-process-grid li { min-height:260px; padding:28px; display:flex; flex-direction:column; border-right:1px solid var(--v12-line); border-bottom:1px solid var(--v12-line); }
.v12-process-grid span { color:var(--v12-purple); font-family:var(--font-mono); font-size:8px; }
.v12-process-grid h3 { margin:auto 0 10px; font-size:22px; font-weight:700; }
.v12-process-grid p { margin:0; font-size:11px; }

/* Contact */
.v12-contact { background:var(--v12-sand); border-top:1px solid var(--v12-line); }
.v12-contact-grid { display:grid; grid-template-columns:minmax(300px,.7fr) minmax(0,1.3fr); gap:90px; align-items:start; }
.v12-contact-copy { position:sticky; top:calc(var(--jx2-fixed-top) + 100px); }
.v12-contact-copy h2 { max-width:580px; }
.v12-contact-copy > p:not(.v12-label) { max-width:520px; margin-top:20px; font-size:14px; }
.v12-contact-details { margin-top:40px; padding-top:22px; display:grid; gap:12px; border-top:1px solid #c7c3ba; }
.v12-contact-details > div { display:grid; grid-template-columns:80px 1fr; gap:12px; }
.v12-contact-details span { color:#777a7d; font-family:var(--font-mono); font-size:8px; letter-spacing:.12em; text-transform:uppercase; }
.v12-contact-details a { font-size:13px; }
.v12-project-brief { border:1px solid #cbc7be; background:#fff; box-shadow:0 18px 40px rgba(25,26,27,.06); }
.v12-project-brief .brief-top { border-top:3px solid var(--v12-purple); }
.v12-contact .form-submit:hover { background:var(--v12-purple); }

/* Footer */
.v12-footer { padding:66px 0 22px; background:#101214; color:#fff; }
.v12-footer-grid { padding-bottom:52px; display:grid; grid-template-columns:1.35fr .55fr .9fr .35fr; gap:60px; }
.v12-footer-brand a { display:block; width:92px; }
.v12-footer-brand img { width:92px; height:auto; filter:grayscale(1) brightness(0) invert(1); }
.v12-footer-brand p { max-width:390px; margin-top:22px; color:rgba(255,255,255,.64)!important; font-size:15px; }
.v12-footer nav > span,.v12-footer-grid > div:nth-child(3) > span { display:block; margin-bottom:16px; color:rgba(255,255,255,.35); font-family:var(--font-mono); font-size:8px; letter-spacing:.14em; text-transform:uppercase; }
.v12-footer nav a,.v12-footer-grid > div:nth-child(3) a { display:block; margin-bottom:10px; color:rgba(255,255,255,.7); font-size:11px; overflow-wrap:anywhere; }
.v12-footer nav a:hover,.v12-footer-grid > div:nth-child(3) a:hover { color:#fff; }
.v12-back-top { align-self:start; justify-self:end; padding-bottom:7px; border-bottom:1px solid rgba(255,255,255,.3); color:rgba(255,255,255,.68); font-size:10px; }
.v12-footer-bottom { padding-top:20px; display:flex; justify-content:space-between; border-top:1px solid rgba(255,255,255,.12); color:rgba(255,255,255,.35); font-family:var(--font-mono); font-size:8px; letter-spacing:.12em; text-transform:uppercase; }

#services,#project-support,#approach,#contact,#civil-engineering,#planning-compliance,#infrastructure,#land-surveying { scroll-margin-top:calc(var(--jx2-fixed-top) + 84px); }

@media (max-width:1100px) {
  .v12-site .wide-shell { width:min(100% - 48px,1500px); }
  .v12-hero { height:auto; min-height:760px; }
  .v12-hero-grid { grid-template-columns:1fr; gap:42px; padding-top:155px; }
  .v12-hero-copy { max-width:760px; }
  .v12-hero-panel { max-width:520px; }
  .v12-strip-grid { grid-template-columns:repeat(2,1fr); }
  .v12-strip-grid > div:nth-child(2) { border-right:1px solid var(--v12-line); }
  .v12-intro-grid,.v12-section-heading { grid-template-columns:1fr; gap:32px; }
  .v12-intro-copy { max-width:720px; }
  .v12-service-card { grid-template-columns:1fr; }
  .v12-card-media { min-height:230px; }
  .v12-service-card-text .v12-card-body h3 { margin-top:58px; }
  .v12-project-grid { grid-template-columns:1fr; }
  .v12-project-card { min-height:440px; }
  .v12-detail-grid { grid-template-columns:1fr; gap:58px; }
  .v12-detail-intro,.v12-contact-copy { position:static; }
  .v12-plan-image { max-width:600px; }
  .v12-why { grid-template-columns:1fr; }
  .v12-why-media { min-height:520px; }
  .v12-process-grid { grid-template-columns:repeat(2,1fr); }
  .v12-contact-grid { grid-template-columns:1fr; gap:54px; }
  .v12-contact-copy { max-width:760px; }
  .v12-footer-grid { grid-template-columns:1.1fr .55fr .8fr; }
  .v12-back-top { display:none; }
}

@media (max-width:720px) {
  .v12-site .wide-shell { width:min(100% - 28px,1500px); }
  .v12-header { min-height:76px; padding-inline:14px; }
  .v12-header .brand { width:62px; height:58px; }
  .v12-header .brand img { width:58px; }
  .v12-header .header-cta { display:none; }
  .v12-header .mobile-nav { right:14px; }
  .v12-hero { min-height:720px; }
  .v12-hero-media { height:100%; }
  .v12-hero-media img { object-position:62% center; }
  .v12-hero-overlay { background:linear-gradient(180deg,rgba(9,11,12,.28) 0%,rgba(9,11,12,.54) 32%,rgba(9,11,12,.92) 68%,#0c0e0f 100%); }
  .v12-hero-grid { min-height:720px; padding-top:250px; padding-bottom:50px; display:flex; flex-direction:column; justify-content:flex-end; gap:28px; }
  .v12-hero h1 { font-size:clamp(44px,13vw,58px); line-height:1; letter-spacing:-.055em; }
  .v12-hero-lede { margin-top:20px; font-size:13px; }
  .v12-hero-actions { margin-top:24px; display:grid; }
  .v12-btn { width:100%; }
  .v12-hero-panel { display:none; }
  .v12-strip-grid { width:100%; grid-template-columns:1fr; }
  .v12-strip-grid > div { min-height:100px; border-right:0!important; border-left:0; border-bottom:1px solid var(--v12-line); }
  .v12-intro,.v12-services,.v12-detail-services,.v12-process,.v12-contact { padding:82px 0; }
  .v12-intro h2,.v12-section-heading h2,.v12-contact h2,.v12-why-copy h2 { font-size:clamp(40px,11.5vw,52px); line-height:1.03; }
  .v12-service-grid { grid-template-columns:1fr; margin-top:40px; }
  .v12-service-card { min-height:0; }
  .v12-card-media { min-height:225px; }
  .v12-card-body { min-height:260px; padding:26px; }
  .v12-card-body h3,.v12-service-card-text .v12-card-body h3 { margin-top:45px; font-size:28px; }
  .v12-service-card-text .v12-card-body { min-height:260px; padding:26px; }
  .v12-project-support { padding:82px 0; }
  .v12-project-grid { margin-top:42px; }
  .v12-project-card { min-height:360px; }
  .v12-project-card > div { padding:24px; }
  .v12-project-card h3 { margin-top:38px; font-size:25px; }
  .v12-detail-intro h2 { font-size:38px; }
  .v12-plan-image { width:100%; }
  .v12-accordion.service-accordion summary { min-height:88px; grid-template-columns:32px 1fr 22px; }
  .v12-accordion.service-accordion summary small { display:none; }
  .v12-accordion.service-accordion summary strong { font-size:20px; }
  .v12-accordion .service-content { grid-template-columns:1fr; gap:14px; padding:0 0 28px 32px; }
  .v12-why-media { min-height:380px; }
  .v12-why-copy { padding:70px 22px; }
  .v12-reasons { margin-top:36px; }
  .v12-process-grid { grid-template-columns:1fr; margin-top:40px; }
  .v12-process-grid li { min-height:190px; }
  .v12-process-grid h3 { margin-top:54px; }
  .v12-contact-grid { gap:42px; }
  .v12-contact-details > div { grid-template-columns:62px 1fr; }
  .v12-footer-grid { grid-template-columns:1fr 1fr; gap:38px 24px; }
  .v12-footer-brand { grid-column:1/-1; }
  .v12-footer-bottom { gap:20px; flex-direction:column; }
}


/* =========================================================
   JX2 v13 — alignment + typography refinement
   ========================================================= */
.v13-site {
  --v13-shell: min(1440px, calc(100% - 128px));
  --v13-section-y: 92px;
  font-family: var(--font-manrope);
}
.v13-site .wide-shell { width: var(--v13-shell); }
.v13-site h1,
.v13-site h2,
.v13-site h3 { letter-spacing: -.035em; }
.v13-site p { line-height: 1.65; }
.v13-site .v12-label,
.v13-site .v12-kicker { font-family: var(--font-mono); letter-spacing: .14em; }

/* Hero: calmer scale and a single aligned 8/4 composition. */
.v13-site .v12-hero { min-height: 700px; height: min(760px, 78vh); }
.v13-site .v12-hero-grid {
  padding-top: 142px;
  padding-bottom: 62px;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, .65fr);
  gap: 72px;
  align-items: end;
}
.v13-site .v12-hero-copy { max-width: 760px; }
.v13-site .v12-hero h1 {
  max-width: 735px;
  font-size: clamp(54px, 4.25vw, 68px);
  line-height: 1.01;
  font-weight: 650;
}
.v13-site .v12-hero-lede { max-width: 640px; margin-top: 24px; font-size: 15px; }
.v13-site .v12-hero-actions { margin-top: 28px; }
.v13-site .v12-hero-panel { max-width: 430px; width: 100%; justify-self: end; }

/* Discipline strip uses the same shell and a tighter rhythm. */
.v13-site .v12-strip-grid > div { min-height: 104px; padding: 22px 24px; }
.v13-site .v12-strip-grid strong { font-size: 16px; }

/* One alignment system for every standard content heading. */
.v13-site .v12-intro,
.v13-site .v12-services,
.v13-site .v12-detail-services,
.v13-site .v12-process,
.v13-site .v12-contact { padding: var(--v13-section-y) 0; }
.v13-site .v12-intro-grid,
.v13-site .v12-section-heading {
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  gap: 72px;
  align-items: end;
}
.v13-site .v12-intro h2,
.v13-site .v12-section-heading h2,
.v13-site .v12-contact h2 {
  max-width: 760px;
  font-size: clamp(44px, 3.65vw, 58px);
  line-height: 1.04;
  font-weight: 600;
}
.v13-site .v12-intro-copy,
.v13-site .v12-section-heading > p { max-width: 500px; }
.v13-site .v12-intro-copy p { font-size: 14px; }
.v13-site .v12-section-heading > p { font-size: 13px; }

/* Capabilities: four equal text-led cards instead of mixed image/text cards. */
.v13-site .v12-service-grid {
  margin-top: 44px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--v12-line);
  border-left: 1px solid var(--v12-line);
}
.v13-site .v12-service-card,
.v13-site .v12-service-card-text {
  min-height: 300px;
  grid-template-columns: 1fr;
  background: #fff;
}
.v13-site .v12-service-card-text .v12-card-body,
.v13-site .v12-card-body { min-height: 300px; padding: 30px; }
.v13-site .v12-service-card-text .v12-card-body h3,
.v13-site .v12-card-body h3 {
  max-width: 290px;
  margin: auto 0 14px;
  font-size: 27px;
  line-height: 1.06;
  font-weight: 650;
}
.v13-site .v12-card-body p { min-height: 60px; margin-bottom: 22px; font-size: 11.5px; }
.v13-site .v12-card-body a { padding-top: 14px; }

/* Project support stays image-led, with less unused vertical space. */
.v13-site .v12-project-support { padding: 96px 0 102px; }
.v13-site .v12-project-grid { margin-top: 46px; gap: 16px; }
.v13-site .v12-project-card { min-height: 410px; }
.v13-site .v12-project-card > div { padding: 28px; }
.v13-site .v12-project-card h3 { margin-top: 38px; font-size: 26px; }

/* Technical services: fixed left rail + flexible accordion, aligned to same shell. */
.v13-site .v12-detail-grid {
  grid-template-columns: minmax(340px, 420px) minmax(0, 1fr);
  gap: 76px;
  align-items: start;
}
.v13-site .v12-detail-intro h2 { font-size: 43px; }
.v13-site .v12-plan-image { margin-top: 28px; width: 100%; }
.v13-site .v12-accordion.service-accordion summary { min-height: 90px; }
.v13-site .v12-accordion.service-accordion summary strong { font-size: 23px; }
.v13-site .v12-accordion .service-content { padding-bottom: 30px; }

/* Approach: keep full-bleed image, align right copy to the same site edge. */
.v13-site .v12-why { min-height: 620px; }
.v13-site .v12-why-copy {
  padding-top: 78px;
  padding-bottom: 78px;
  padding-left: 72px;
  padding-right: max(48px, calc((100vw - 1440px) / 2));
}
.v13-site .v12-why-copy h2 {
  max-width: 560px;
  font-size: clamp(44px, 3.65vw, 58px);
  line-height: 1.04;
  font-weight: 600;
}
.v13-site .v12-reasons { margin-top: 36px; }
.v13-site .v12-reasons article { padding: 18px 0; }
.v13-site .v12-reasons h3 { font-size: 16px; }

/* Process: less empty height, consistent card geometry. */
.v13-site .v12-process-grid { margin-top: 42px; }
.v13-site .v12-process-grid li { min-height: 210px; padding: 24px; }
.v13-site .v12-process-grid h3 { font-size: 20px; }

/* Contact: align copy/form to the same 5/7 split used elsewhere. */
.v13-site .v12-contact-grid {
  grid-template-columns: minmax(320px, 5fr) minmax(0, 7fr);
  gap: 72px;
}
.v13-site .v12-contact-copy h2 { max-width: 520px; }
.v13-site .v12-contact-copy > p:not(.v12-label) { max-width: 470px; font-size: 13px; }
.v13-site .v12-contact-details { margin-top: 32px; }
.v13-site .v12-project-brief { width: 100%; }

/* Footer alignment. */
.v13-site .v12-footer { padding-top: 56px; }
.v13-site .v12-footer-grid { padding-bottom: 44px; gap: 52px; }

@media (max-width: 1100px) {
  .v13-site { --v13-shell: min(100% - 56px, 1440px); --v13-section-y: 82px; }
  .v13-site .v12-hero { height: auto; min-height: 720px; }
  .v13-site .v12-hero-grid { grid-template-columns: 1fr; gap: 34px; padding-top: 150px; }
  .v13-site .v12-hero-panel { justify-self: start; }
  .v13-site .v12-intro-grid,
  .v13-site .v12-section-heading { grid-template-columns: 1fr; gap: 26px; }
  .v13-site .v12-service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .v13-site .v12-detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .v13-site .v12-detail-intro { position: static; }
  .v13-site .v12-why-copy { padding-right: 56px; padding-left: 56px; }
  .v13-site .v12-contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 720px) {
  .v13-site { --v13-shell: min(100% - 36px, 1440px); --v13-section-y: 66px; }
  .v13-site .v12-hero { min-height: 690px; }
  .v13-site .v12-hero-grid { min-height: 690px; padding-top: 238px; padding-bottom: 44px; gap: 22px; }
  .v13-site .v12-hero h1 { max-width: 100%; font-size: clamp(40px, 11.5vw, 52px); line-height: 1.02; }
  .v13-site .v12-hero-lede { font-size: 12.5px; }
  .v13-site .v12-strip-grid > div { min-height: 88px; padding: 18px 4px; }
  .v13-site .v12-intro h2,
  .v13-site .v12-section-heading h2,
  .v13-site .v12-contact h2,
  .v13-site .v12-why-copy h2 { font-size: clamp(36px, 10.5vw, 46px); }
  .v13-site .v12-service-grid { grid-template-columns: 1fr; margin-top: 34px; }
  .v13-site .v12-service-card,
  .v13-site .v12-service-card-text,
  .v13-site .v12-service-card-text .v12-card-body,
  .v13-site .v12-card-body { min-height: 240px; }
  .v13-site .v12-service-card-text .v12-card-body h3,
  .v13-site .v12-card-body h3 { margin-top: 44px; font-size: 25px; }
  .v13-site .v12-project-support { padding: 68px 0 72px; }
  .v13-site .v12-project-grid { margin-top: 34px; }
  .v13-site .v12-project-card { min-height: 340px; }
  .v13-site .v12-detail-intro h2 { font-size: 36px; }
  .v13-site .v12-accordion.service-accordion summary { min-height: 82px; }
  .v13-site .v12-accordion.service-accordion summary strong { font-size: 19px; }
  .v13-site .v12-why { min-height: 0; }
  .v13-site .v12-why-copy { padding: 62px 18px; }
  .v13-site .v12-process-grid li { min-height: 170px; }
  .v13-site .v12-contact-grid { gap: 38px; }
  .v13-site .v12-footer { padding-top: 48px; }
}


/* =========================================================
   v14 — Image refresh
   Unique imagery for each major technical discipline.
   ========================================================= */
.v14-site .v14-capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}
.v14-site .v14-capability-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.v14-site .v14-capability-card .v12-card-media {
  min-height: 0;
  aspect-ratio: 3 / 2;
  border-bottom: 1px solid var(--v12-line);
}
.v14-site .v14-capability-card .v12-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v14-site .v14-capability-card .v12-card-body {
  min-height: 245px;
  padding: 26px 26px 24px;
}
.v14-site .v14-capability-card .v12-card-body h3 {
  margin: 34px 0 12px;
  font-size: 24px;
  line-height: 1.08;
}
.v14-site .v14-capability-card .v12-card-body p {
  min-height: 58px;
  margin-bottom: 20px;
}
.v14-site .v12-plan-image img {
  aspect-ratio: 14 / 9;
  object-fit: cover;
}
@media (max-width: 1180px) {
  .v14-site .v14-capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .v14-site .v14-capability-grid { grid-template-columns: 1fr; }
  .v14-site .v14-capability-card .v12-card-body { min-height: 225px; }
  .v14-site .v14-capability-card .v12-card-body h3 { margin-top: 28px; font-size: 26px; }
}


/* JX2 v15 — high-resolution capability imagery */
.v14-site .v14-capability-card .v12-card-media {
  overflow: hidden;
  background: #eceae5;
}
.v14-site .v14-capability-card .v12-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  backface-visibility: hidden;
  transform: translateZ(0);
  filter: contrast(1.025) saturate(1.015);
}
@media (min-width: 1100px) {
  .v14-site .v14-capability-card .v12-card-media { min-height: 265px; }
}


/* JX2 v16 — final image-quality and project-support refresh */


/* =========================================================
   JX2 v17 — unique high-resolution image library
   Uses one dedicated image per major section and avoids
   GPU transforms/filters on capability imagery for clarity.
   ========================================================= */
.v17-site .v14-capability-card .v12-card-media img {
  filter: none;
  transform: none;
  backface-visibility: visible;
  image-rendering: auto;
}
.v17-site .v14-capability-card:hover .v12-card-media img {
  transform: none;
}
.v17-site .v12-project-card img {
  image-rendering: auto;
}
.v17-site .v12-plan-image img,
.v17-site .v12-why-media img {
  image-rendering: auto;
}

/* =========================================================
   JX2 v18 — final mobile polish
   Keeps the v17 desktop design intact while tightening
   mobile rhythm, card height, and supporting-text legibility.
   ========================================================= */
@media (max-width: 720px) {
  /* Slightly tighter global mobile rhythm. */
  .v18-site {
    --v13-section-y: 58px;
  }

  /* Hero: preserve the image-led composition, but give the
     headline and actions a little more breathing room. */
  .v18-site .v12-hero {
    min-height: 650px;
  }
  .v18-site .v12-hero-grid {
    min-height: 650px;
    padding-top: 218px;
    padding-bottom: 36px;
    gap: 18px;
  }
  .v18-site .v12-hero h1 {
    font-size: clamp(38px, 10.8vw, 49px);
    line-height: 1.015;
    letter-spacing: -.05em;
  }
  .v18-site .v12-hero-lede {
    margin-top: 17px;
    font-size: 12.75px;
    line-height: 1.7;
  }
  .v18-site .v12-hero-actions {
    margin-top: 19px;
    gap: 9px;
  }
  .v18-site .v12-btn {
    min-height: 50px;
    padding-inline: 18px;
  }

  /* Intro: less dead space without changing hierarchy. */
  .v18-site .v12-intro {
    padding: 52px 0 56px;
  }
  .v18-site .v12-intro-grid {
    gap: 22px;
  }
  .v18-site .v12-intro-copy p {
    margin-bottom: 12px;
    font-size: 12.75px;
    line-height: 1.7;
  }

  /* Core capabilities: shorter cards and easier reading. */
  .v18-site .v12-services {
    padding-top: 58px;
    padding-bottom: 60px;
  }
  .v18-site .v14-capability-grid {
    margin-top: 28px;
  }
  .v18-site .v14-capability-card .v12-card-body {
    min-height: 188px;
    padding: 20px 22px 19px;
  }
  .v18-site .v14-capability-card .v12-card-body h3 {
    margin: 20px 0 9px;
    font-size: 24px;
    line-height: 1.08;
  }
  .v18-site .v14-capability-card .v12-card-body p {
    min-height: 0;
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 1.62;
  }
  .v18-site .v14-capability-card .v12-card-body a {
    padding-top: 12px;
    font-size: 10.5px;
  }

  /* Project support: trim surrounding space, keep cards visual. */
  .v18-site .v12-project-support {
    padding: 60px 0 64px;
  }
  .v18-site .v12-project-grid {
    margin-top: 30px;
    gap: 12px;
  }
  .v18-site .v12-project-card p {
    font-size: 12px;
    line-height: 1.62;
  }

  /* Technical services: slightly stronger supporting copy. */
  .v18-site .v12-detail-services {
    padding-top: 58px;
    padding-bottom: 60px;
  }
  .v18-site .v12-detail-intro > p:last-of-type,
  .v18-site .v12-accordion .service-content p,
  .v18-site .v12-accordion .service-content li {
    font-size: 12px;
    line-height: 1.62;
  }

  /* Approach: maintain the strong split while shortening the copy block. */
  .v18-site .v12-why-copy {
    padding: 54px 18px 56px;
  }
  .v18-site .v12-reasons {
    margin-top: 28px;
  }
  .v18-site .v12-reasons article {
    padding: 16px 0;
  }
  .v18-site .v12-reasons p {
    font-size: 12px;
    line-height: 1.62;
  }

  /* Process: the key v18 mobile fix — materially shorter cards. */
  .v18-site .v12-process {
    padding-top: 54px;
    padding-bottom: 58px;
  }
  .v18-site .v12-process-grid {
    margin-top: 28px;
  }
  .v18-site .v12-process-grid li {
    min-height: 128px;
    padding: 18px 18px 17px;
  }
  .v18-site .v12-process-grid h3 {
    margin: 22px 0 7px;
    font-size: 19px;
  }
  .v18-site .v12-process-grid p {
    font-size: 11.75px;
    line-height: 1.58;
  }

  /* Inquiry area: retain field sizes, only tighten section rhythm. */
  .v18-site .v12-contact {
    padding-top: 58px;
    padding-bottom: 62px;
  }
  .v18-site .v12-contact-grid {
    gap: 32px;
  }
  .v18-site .v12-contact-copy > p:not(.v12-label) {
    font-size: 12.5px;
    line-height: 1.68;
  }
}



/* =========================================================
   Jx2 v19 — Shelly revision pass (Web Page Edits)
   Branding, service scope, credentials, imagery and form.
   ========================================================= */
.v19-site .v19-brand-lockup {
  width:auto!important;
  height:66px!important;
  display:flex;
  align-items:center;
  gap:9px;
  overflow:visible;
}
.v19-site .v19-brand-lockup img {
  width:58px!important;
  height:58px!important;
  object-fit:contain;
  flex:none;
}
.v19-brand-script {
  color:#fff;
  font-family:"Lucida Calligraphy", "Z003", "URW Chancery L", cursive;
  font-size:15px;
  font-weight:400;
  letter-spacing:0;
  white-space:nowrap;
  text-shadow:0 1px 2px rgba(0,0,0,.28);
}
.v19-site .v12-kicker {
  color:#c89cff;
  font-weight:800;
  text-shadow:0 1px 4px rgba(0,0,0,.45);
}
.v19-site .v12-strip-grid > div {
  grid-template-columns:1fr;
  grid-template-rows:auto auto;
  padding-left:30px;
}
.v19-site .v12-strip-grid > div > span { display:none; }
.v19-site .v14-capability-card .v12-card-body > span { display:none; }
.v19-site .v14-capability-card .v12-card-body h3 { margin-top:20px; }
.v19-site .v14-capability-card:nth-child(2) .v12-card-body h3 { font-size:24px; line-height:1.08; }

/* The detailed service list no longer advertises arbitrary counts/numbers. */
.v19-site .v19-accordion.service-accordion summary {
  grid-template-columns:minmax(0,1fr) 26px;
  gap:20px;
}
.v19-site .v19-accordion.service-accordion summary > span,
.v19-site .v19-accordion.service-accordion summary > small { display:none!important; }
.v19-site .v19-accordion.service-accordion summary strong { max-width:800px; }
.v19-project-types {
  margin:18px 0 24px;
  padding:18px 20px;
  border:1px solid var(--v12-line);
  background:#faf9f6;
}
.v19-project-types > strong {
  display:block;
  margin-bottom:10px;
  color:var(--v12-ink);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.v19-project-types ul {
  margin:0!important;
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:7px 20px!important;
}
.v19-project-types li { border:0!important; padding:0!important; }

/* Credentials requested in the marked-up draft. */
.v19-credentials {
  margin-top:34px;
  padding-top:26px;
  border-top:1px solid #c7c3ba;
}
.v19-credentials .v12-label { margin-bottom:12px; }
.v19-credentials h3 { margin:0 0 8px; font-size:24px; font-weight:650; }
.v19-credentials > p:not(.v12-label) { margin:0 0 14px!important; font-size:13px!important; }
.v19-credentials ul { margin:0; padding:0; list-style:none; }
.v19-credentials li { padding:5px 0; color:#555a5f; font-size:12px; line-height:1.45; }

/* Purple logo + live Lucida Calligraphy lockup in footer. */
.v19-site .v12-footer-brand a.v19-footer-lockup {
  width:auto;
  display:flex;
  align-items:center;
  gap:12px;
}
.v19-site .v12-footer-brand a.v19-footer-lockup img {
  width:76px;
  height:64px;
  object-fit:contain;
  filter:none;
}
.v19-site .v12-footer-brand .v19-brand-script { font-size:20px; }

@media (max-width:720px) {
  .v19-site .v19-brand-lockup { gap:0; width:62px!important; }
  .v19-site .v19-brand-lockup img { width:58px!important; height:58px!important; }
  .v19-site .v19-brand-lockup .v19-brand-script { display:none; }
  .v19-site .v12-strip-grid > div { padding-left:30px; }
  .v19-site .v14-capability-card:nth-child(2) .v12-card-body h3 { font-size:22px; }
  .v19-site .v19-accordion.service-accordion summary { grid-template-columns:1fr 22px; }
  .v19-site .v19-accordion.service-accordion summary strong { font-size:19px; line-height:1.15; }
  .v19-project-types ul { grid-template-columns:1fr; }
  .v19-credentials { margin-top:26px; }
}


/* =========================================================
   JX2 v20 — final correction pass
   Cache-safe brand mark, deliberate hero line breaks,
   sticky-header anchor clearance, and cleaner project types.
   ========================================================= */

/* Ensure in-page navigation never lands underneath the fixed header. */
html { scroll-padding-top: 108px; }
.v20-site #services,
.v20-site #project-support,
.v20-site #approach,
.v20-site #contact,
.v20-site #civil-engineering,
.v20-site #planning-compliance,
.v20-site #infrastructure,
.v20-site #land-surveying {
  scroll-margin-top: 108px !important;
}

/* Keep the sticky technical-services intro visibly below the fixed header. */
.v20-site .v12-detail-intro {
  top: 112px;
}

/* Purple JX2 mark: preserve transparent artwork and white outline exactly. */
.v20-site .v19-brand-lockup img,
.v20-site .v19-footer-lockup img {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

/* Deliberate hero typography requested in the marked-up revision. */
.v20-site .v20-hero-title {
  max-width: 900px;
  font-size: clamp(52px, 4.55vw, 74px);
  line-height: .99;
  letter-spacing: -.052em;
}
.v20-site .v20-hero-title > span {
  display: block;
}
.v20-site .v20-hero-title > span + span {
  margin-top: .05em;
}

/* Project types: denser, aligned, and easier to scan. */
.v20-site .v19-project-types {
  margin: 12px 0 22px;
  padding: 16px 18px 15px;
}
.v20-site .v19-project-types > strong {
  margin-bottom: 12px;
  font-size: 11px;
}
.v20-site .v19-project-types ul {
  grid-template-columns: repeat(2, minmax(0,1fr));
  column-gap: 34px !important;
  row-gap: 8px !important;
}
.v20-site .v19-project-types li {
  min-height: 18px;
  padding: 0 0 0 13px !important;
  line-height: 1.35;
}
.v20-site .v19-project-types li::before {
  left: 0;
  top: .5em;
  width: 4px;
  height: 4px;
}

@media (max-width: 980px) {
  html { scroll-padding-top: 94px; }
  .v20-site #services,
  .v20-site #project-support,
  .v20-site #approach,
  .v20-site #contact,
  .v20-site #civil-engineering,
  .v20-site #planning-compliance,
  .v20-site #infrastructure,
  .v20-site #land-surveying { scroll-margin-top: 94px !important; }
  .v20-site .v12-detail-intro { top: 94px; }
  .v20-site .v20-hero-title { max-width: 760px; font-size: clamp(48px, 6.7vw, 66px); }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 82px; }
  .v20-site #services,
  .v20-site #project-support,
  .v20-site #approach,
  .v20-site #contact,
  .v20-site #civil-engineering,
  .v20-site #planning-compliance,
  .v20-site #infrastructure,
  .v20-site #land-surveying { scroll-margin-top: 82px !important; }
  .v20-site .v12-detail-intro { position: static; top: auto; }
  .v20-site .v20-hero-title {
    max-width: 100%;
    font-size: clamp(37px, 10.4vw, 47px);
    line-height: 1.015;
    letter-spacing: -.048em;
  }
  /* On mobile allow the long requested lines to wrap naturally. */
  .v20-site .v20-hero-title > span { display: inline; }
  .v20-site .v20-hero-title > span::after { content: " "; }
  .v20-site .v20-hero-title > span + span { margin-top: 0; }
  .v20-site .v19-project-types ul { grid-template-columns: 1fr; row-gap: 7px !important; }
}

/* =========================================================
   JX2 v21 — final proportion, alignment & readability pass
   Exact supplied logos, wider hero composition, balanced
   technical-services architecture, and legible type scale.
   ========================================================= */

.v21-site {
  --v13-shell: min(1480px, calc(100% - 112px));
  --v13-section-y: 88px;
}

/* Exact supplied JX2 artwork — no filtering and no duplicate script text. */
.v21-site .v19-brand-lockup {
  width: 104px !important;
  height: 80px !important;
  gap: 0;
}
.v21-site .v19-brand-lockup img {
  width: 94px !important;
  height: 78px !important;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
}
.v21-site .v12-footer-brand a.v19-footer-lockup {
  width: 118px;
  height: auto;
  display: block;
}
.v21-site .v12-footer-brand a.v19-footer-lockup img {
  width: 112px;
  height: auto;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
}

/* Hero — use the available width rather than forcing a narrow text stack. */
.v21-site .v12-hero-grid {
  grid-template-columns: minmax(0, 1.75fr) minmax(340px, .58fr);
  gap: 58px;
}
.v21-site .v12-hero-copy {
  max-width: 1040px;
}
.v21-site .v20-hero-title {
  max-width: 1040px;
  font-size: clamp(52px, 3.15vw, 64px);
  line-height: 1.01;
  letter-spacing: -.046em;
}
.v21-site .v12-hero-lede {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.68 !important;
}
.v21-site .v12-hero-panel {
  width: 100%;
  max-width: 400px;
  justify-self: end;
  padding: 25px 28px 21px;
}
.v21-site .v12-hero-panel > p { font-size: 9.5px; }
.v21-site .v12-hero-panel li span { font-size: 9px; }
.v21-site .v12-hero-panel li strong { font-size: 14px; }

@media (min-width: 1200px) {
  .v21-site .v20-hero-title > span { white-space: nowrap; }
}

/* Supporting type should remain readable at normal desktop viewing distance. */
.v21-site .v12-label,
.v21-site .v12-kicker { font-size: 9.5px; }
.v21-site .v12-strip-grid strong { font-size: 17px; }
.v21-site .v12-strip-grid small { font-size: 12.5px; line-height: 1.45; }
.v21-site .v12-intro-copy p { font-size: 15.5px; line-height: 1.72; }
.v21-site .v12-section-heading > p { font-size: 15px; line-height: 1.68; }

/* Core capabilities — stronger text scale and consistent card proportions. */
.v21-site .v14-capability-card .v12-card-body {
  min-height: 270px;
  padding: 28px 28px 25px;
}
.v21-site .v14-capability-card .v12-card-body h3,
.v21-site .v14-capability-card:nth-child(2) .v12-card-body h3 {
  margin: 22px 0 12px;
  font-size: 24px;
  line-height: 1.08;
}
.v21-site .v14-capability-card .v12-card-body p {
  min-height: 72px;
  margin-bottom: 22px;
  font-size: 13.5px;
  line-height: 1.62;
}
.v21-site .v14-capability-card .v12-card-body a {
  padding-top: 15px;
  font-size: 12px;
}

/* Project support — preserve visual emphasis while raising legibility. */
.v21-site .v12-project-card h3 { font-size: 28px; }
.v21-site .v12-project-card p {
  font-size: 13.5px;
  line-height: 1.62;
}
.v21-site .v12-project-support .v12-section-heading > p {
  font-size: 14.5px;
}

/* Technical services — rebalance the left rail and make the open panel use
   the full width instead of leaving a large empty quadrant. */
.v21-site .v12-detail-grid {
  grid-template-columns: minmax(300px, 350px) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.v21-site .v12-detail-intro h2 {
  max-width: 340px;
  margin-bottom: 18px;
  font-size: 44px;
  line-height: 1.04;
}
.v21-site .v12-detail-intro > p:last-of-type {
  max-width: 340px;
  font-size: 15px;
  line-height: 1.68;
}
.v21-site .v12-plan-image {
  width: 100%;
  max-width: 350px;
  margin-top: 30px;
  aspect-ratio: 4 / 3;
}
.v21-site .v12-accordion.service-accordion summary {
  min-height: 94px;
}
.v21-site .v19-accordion.service-accordion summary strong {
  max-width: 900px;
  font-size: 24px;
  line-height: 1.16;
}
.v21-site .v12-accordion .service-content {
  grid-template-columns: minmax(230px, .58fr) minmax(0, 1.42fr);
  gap: 36px 46px;
  padding: 0 0 40px;
}
.v21-site .v12-accordion .service-content > p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
}
.v21-site .v12-accordion .service-content > ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  align-content: start;
  border-top: 1px solid rgba(14,14,16,.09);
}
.v21-site .v12-accordion .service-content li {
  min-height: 44px;
  padding: 12px 8px 11px 18px;
  font-size: 13px;
  line-height: 1.45;
}
.v21-site .v12-accordion .service-content li:first-child { border-top: 0; }
.v21-site .v12-accordion .service-content li::before {
  top: 18px;
  width: 4px;
  height: 4px;
}

/* First accordion panel has a third block. Give each element a deliberate area. */
.v21-site .v21-has-project-types {
  grid-template-columns: minmax(230px, .58fr) minmax(0, 1.42fr);
  grid-template-areas:
    "intro project"
    "list list";
  align-items: start;
}
.v21-site .v21-has-project-types > p { grid-area: intro; }
.v21-site .v21-has-project-types > .v19-project-types {
  grid-area: project;
  margin: 0;
  padding: 18px 20px;
}
.v21-site .v21-has-project-types > .v19-service-list { grid-area: list; }
.v21-site .v19-project-types > strong { font-size: 12px; }
.v21-site .v19-project-types li {
  min-height: 22px;
  font-size: 13px;
  line-height: 1.4;
}

/* Approach and process — readable body copy and consistent vertical rhythm. */
.v21-site .v12-why-copy { padding-top: 82px; padding-bottom: 82px; }
.v21-site .v12-reasons h3 { font-size: 18px; }
.v21-site .v12-reasons p { font-size: 14px; line-height: 1.62; }
.v21-site .v12-process-grid li { min-height: 220px; padding: 26px; }
.v21-site .v12-process-grid h3 { font-size: 22px; }
.v21-site .v12-process-grid p { font-size: 13.5px; line-height: 1.58; }

/* Contact and credentials — remove the tiny-print feel from the final section. */
.v21-site .v12-contact-copy > p:not(.v12-label) {
  font-size: 15px;
  line-height: 1.68;
}
.v21-site .v12-contact-details span { font-size: 9.5px; }
.v21-site .v12-contact-details a { font-size: 14.5px; }
.v21-site .v19-credentials h3 { font-size: 25px; }
.v21-site .v19-credentials > p:not(.v12-label) { font-size: 14px !important; }
.v21-site .v19-credentials li { font-size: 13.5px; line-height: 1.5; }
.v21-site .brief-top { font-size: 9.5px; }
.v21-site .project-form label > span { font-size: 12px; }
.v21-site .project-form input,
.v21-site .project-form textarea { font-size: 14px; }
.v21-site .form-submit { font-size: 12.5px; }
.v21-site .form-fallback { font-size: 12px; }
.v21-site .form-status { font-size: 12.5px; }

/* Footer: normal reading sizes while preserving restrained hierarchy. */
.v21-site .v12-footer-brand p { font-size: 14.5px; line-height: 1.65; }
.v21-site .v12-footer nav > span,
.v21-site .v12-footer-grid > div:nth-child(3) > span { font-size: 9px; }
.v21-site .v12-footer nav a,
.v21-site .v12-footer-grid > div:nth-child(3) a { font-size: 12.5px; }
.v21-site .v12-footer-bottom { font-size: 9px; }

@media (max-width: 1100px) {
  .v21-site { --v13-shell: min(calc(100% - 56px), 1480px); }
  .v21-site .v12-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .v21-site .v12-hero-copy { max-width: 900px; }
  .v21-site .v20-hero-title { max-width: 900px; font-size: clamp(48px, 6vw, 62px); }
  .v21-site .v20-hero-title > span { white-space: normal; }
  .v21-site .v12-hero-panel { justify-self: start; max-width: 500px; }
  .v21-site .v12-detail-grid { grid-template-columns: 1fr; gap: 46px; }
  .v21-site .v12-detail-intro { position: static; }
  .v21-site .v12-detail-intro h2,
  .v21-site .v12-detail-intro > p:last-of-type { max-width: 720px; }
  .v21-site .v12-plan-image { max-width: 620px; }
}

@media (max-width: 720px) {
  .v21-site {
    --v13-shell: min(calc(100% - 32px), 1480px);
    --v13-section-y: 60px;
  }
  .v21-site .v19-brand-lockup {
    width: 72px !important;
    height: 62px !important;
  }
  .v21-site .v19-brand-lockup img {
    width: 68px !important;
    height: 62px !important;
  }
  .v21-site .v20-hero-title {
    max-width: 100%;
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.025;
    letter-spacing: -.042em;
  }
  .v21-site .v12-hero-lede { font-size: 13.5px; line-height: 1.65 !important; }
  .v21-site .v12-strip-grid strong { font-size: 16px; }
  .v21-site .v12-strip-grid small { font-size: 12.5px; }
  .v21-site .v12-intro-copy p,
  .v21-site .v12-section-heading > p { font-size: 13.5px; }

  .v21-site .v14-capability-card .v12-card-body {
    min-height: 0;
    padding: 22px 22px 21px;
  }
  .v21-site .v14-capability-card .v12-card-body h3,
  .v21-site .v14-capability-card:nth-child(2) .v12-card-body h3 {
    margin: 16px 0 10px;
    font-size: 23px;
  }
  .v21-site .v14-capability-card .v12-card-body p {
    min-height: 0;
    font-size: 13.5px;
    line-height: 1.6;
  }
  .v21-site .v14-capability-card .v12-card-body a { font-size: 12px; }
  .v21-site .v12-project-card p { font-size: 13.5px; }

  .v21-site .v12-detail-intro h2 { font-size: 38px; }
  .v21-site .v12-detail-intro > p:last-of-type { font-size: 13.5px; }
  .v21-site .v12-accordion.service-accordion summary { min-height: 84px; }
  .v21-site .v19-accordion.service-accordion summary strong { font-size: 20px; }
  .v21-site .v12-accordion .service-content,
  .v21-site .v21-has-project-types {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 18px;
    padding: 0 0 30px;
  }
  .v21-site .v21-has-project-types > p,
  .v21-site .v21-has-project-types > .v19-project-types,
  .v21-site .v21-has-project-types > .v19-service-list { grid-area: auto; }
  .v21-site .v12-accordion .service-content > p { font-size: 13.5px; }
  .v21-site .v12-accordion .service-content > ul { grid-template-columns: 1fr; }
  .v21-site .v12-accordion .service-content li,
  .v21-site .v19-project-types li { font-size: 13px; }

  .v21-site .v12-reasons h3 { font-size: 17px; }
  .v21-site .v12-reasons p { font-size: 13.5px; }
  .v21-site .v12-process-grid li { min-height: 138px; padding: 19px; }
  .v21-site .v12-process-grid h3 { font-size: 20px; margin: 24px 0 7px; }
  .v21-site .v12-process-grid p { font-size: 13px; }

  .v21-site .v12-contact-copy > p:not(.v12-label) { font-size: 13.5px; }
  .v21-site .v12-contact-details a { font-size: 13.5px; }
  .v21-site .v19-credentials > p:not(.v12-label),
  .v21-site .v19-credentials li { font-size: 13px !important; }
  .v21-site .project-form label > span { font-size: 12px; }
  .v21-site .project-form input,
  .v21-site .project-form textarea { font-size: 14px; }
  .v21-site .form-fallback { font-size: 11.5px; }
  .v21-site .v12-footer-brand p { font-size: 13.5px; }
  .v21-site .v12-footer nav a,
  .v21-site .v12-footer-grid > div:nth-child(3) a { font-size: 12px; }
}
.v21-site .v19-project-types li::before { top: .5em; }


/* =========================================================
   JX2 v22 — final readability, balance & brand consistency
   No service-scope or form-behavior changes.
   ========================================================= */

/* Keep the supplied logo artwork untouched. A restrained light field makes
   its black CIVIL DESIGN lettering readable on the dark header/footer. */
.v22-site .v19-brand-lockup {
  width: 96px !important;
  height: 72px !important;
  padding: 4px 7px 5px;
  background: rgba(246,245,241,.97);
  border: 1px solid rgba(255,255,255,.22);
  overflow: visible;
}
.v22-site .v19-brand-lockup img {
  width: 80px !important;
  height: 62px !important;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
}
.v22-site .v12-footer-brand a.v19-footer-lockup {
  width: 126px;
  padding: 8px 9px;
  background: var(--v12-paper);
  border: 1px solid rgba(255,255,255,.16);
}
.v22-site .v12-footer-brand a.v19-footer-lockup img {
  width: 106px;
  filter: none !important;
  opacity: 1 !important;
}

/* Primary navigation is functional content, not microcopy. */
.v22-site .v12-header .desktop-nav { font-size: 12.5px; }
.v22-site .v12-header .header-cta { font-size: 12.5px; }

/* Tighter rhythm after the hero. */
.v22-site .v12-intro { padding-top: 72px; padding-bottom: 76px; }
.v22-site .v12-intro-copy p { font-size: 16px; }

/* Capability cards: normal desktop reading size while preserving proportions. */
.v22-site .v14-capability-card .v12-card-body { min-height: 276px; }
.v22-site .v14-capability-card .v12-card-body p {
  font-size: 14.5px;
  line-height: 1.62;
}
.v22-site .v14-capability-card .v12-card-body a { font-size: 13px; }

/* Project support. */
.v22-site .v12-project-card p { font-size: 14.5px; line-height: 1.62; }
.v22-site .v12-project-support .v12-section-heading > p { font-size: 15.5px; }

/* Technical services: keep v21's balanced composition and increase scan-critical type. */
.v22-site .v12-detail-services { padding-top: 82px; padding-bottom: 86px; }
.v22-site .v12-detail-intro > p:last-of-type { font-size: 15.5px; }
.v22-site .v19-accordion.service-accordion summary strong {
  font-size: 25px;
  line-height: 1.16;
}
.v22-site .v12-accordion .service-content > p {
  font-size: 15.5px;
  line-height: 1.68;
}
.v22-site .v12-accordion .service-content li {
  min-height: 46px;
  font-size: 14.5px;
  line-height: 1.45;
}
.v22-site .v19-project-types > strong { font-size: 13px; }
.v22-site .v19-project-types li {
  min-height: 24px;
  font-size: 14.5px;
  line-height: 1.42;
}

/* Approach and process. */
.v22-site .v12-reasons h3 { font-size: 19px; }
.v22-site .v12-reasons p { font-size: 15px; line-height: 1.62; }
.v22-site .v12-process { padding-top: 78px; padding-bottom: 82px; }
.v22-site .v12-process-grid li { min-height: 205px; padding: 27px; }
.v22-site .v12-process-grid h3 { font-size: 23px; }
.v22-site .v12-process-grid p { font-size: 15px; line-height: 1.58; }

/* Contact / inquiry: actionable information should never read as fine print. */
.v22-site .v12-contact { padding-top: 84px; padding-bottom: 88px; }
.v22-site .v12-contact-copy > p:not(.v12-label) { font-size: 16px; }
.v22-site .v12-contact-details span { font-size: 11px; }
.v22-site .v12-contact-details a { font-size: 16px; }
.v22-site .v19-credentials h3 { font-size: 26px; }
.v22-site .v19-credentials > p:not(.v12-label) { font-size: 15.5px !important; }
.v22-site .v19-credentials li { font-size: 15px; line-height: 1.52; }
.v22-site .brief-top { font-size: 11px; }
.v22-site .project-form label > span { font-size: 13.5px; }
.v22-site .project-form input,
.v22-site .project-form textarea { font-size: 16px; line-height: 1.5; }
.v22-site .form-submit { font-size: 13.5px; }
.v22-site .form-fallback { font-size: 13.5px; }
.v22-site .form-status { font-size: 14px; }

/* Footer: readable navigation/contact details, restrained metadata. */
.v22-site .v12-footer-brand p { font-size: 16px; line-height: 1.62; }
.v22-site .v12-footer nav > span,
.v22-site .v12-footer-grid > div:nth-child(3) > span { font-size: 10.5px; }
.v22-site .v12-footer nav a,
.v22-site .v12-footer-grid > div:nth-child(3) a {
  margin-bottom: 12px;
  font-size: 14.5px;
  line-height: 1.5;
}
.v22-site .v12-footer-bottom { font-size: 10.5px; }

@media (max-width: 1100px) {
  .v22-site .v12-header .desktop-nav { font-size: 12px; }
  .v22-site .v19-brand-lockup {
    width: 88px !important;
    height: 68px !important;
  }
  .v22-site .v19-brand-lockup img {
    width: 74px !important;
    height: 58px !important;
  }
}

@media (max-width: 720px) {
  .v22-site .v19-brand-lockup {
    width: 66px !important;
    height: 58px !important;
    padding: 3px 5px;
  }
  .v22-site .v19-brand-lockup img {
    width: 55px !important;
    height: 50px !important;
  }
  .v22-site .v12-intro { padding-top: 54px; padding-bottom: 58px; }
  .v22-site .v12-intro-copy p,
  .v22-site .v12-section-heading > p { font-size: 14.5px; }
  .v22-site .v14-capability-card .v12-card-body p { font-size: 14.5px; }
  .v22-site .v12-project-card p { font-size: 14px; }
  .v22-site .v12-detail-services { padding-top: 60px; padding-bottom: 64px; }
  .v22-site .v12-detail-intro > p:last-of-type { font-size: 14.5px; }
  .v22-site .v19-accordion.service-accordion summary strong { font-size: 21px; }
  .v22-site .v12-accordion .service-content > p { font-size: 14.5px; }
  .v22-site .v12-accordion .service-content li,
  .v22-site .v19-project-types li { font-size: 14px; }
  .v22-site .v19-project-types > strong { font-size: 12.5px; }
  .v22-site .v12-reasons p { font-size: 14.5px; }
  .v22-site .v12-process { padding-top: 58px; padding-bottom: 62px; }
  .v22-site .v12-process-grid li { min-height: 145px; padding: 20px; }
  .v22-site .v12-process-grid h3 { font-size: 21px; }
  .v22-site .v12-process-grid p { font-size: 14px; }
  .v22-site .v12-contact { padding-top: 62px; padding-bottom: 66px; }
  .v22-site .v12-contact-copy > p:not(.v12-label) { font-size: 14.5px; }
  .v22-site .v12-contact-details span { font-size: 10px; }
  .v22-site .v12-contact-details a { font-size: 14.5px; }
  .v22-site .v19-credentials > p:not(.v12-label),
  .v22-site .v19-credentials li { font-size: 14px !important; }
  .v22-site .project-form label > span { font-size: 13px; }
  .v22-site .project-form input,
  .v22-site .project-form textarea { font-size: 16px; }
  .v22-site .form-fallback { font-size: 12.5px; }
  .v22-site .v12-footer-brand p { font-size: 14.5px; }
  .v22-site .v12-footer nav a,
  .v22-site .v12-footer-grid > div:nth-child(3) a { font-size: 13.5px; }
  .v22-site .v12-footer-bottom { font-size: 9.5px; }
}


/* =========================================================
   JX2 v23 — production visual polish
   Keeps v22 content, service scope and inquiry behavior intact.
   Refines logo integration, spacing, card rhythm and footer grid.
   ========================================================= */

/* Logo integration: remove the boxed white tile while preserving the exact
   supplied artwork. A soft edge/glow keeps the black CIVIL DESIGN lettering
   readable against dark photography without creating a pasted-on rectangle. */
.v23-site .v19-brand-lockup {
  width: 98px !important;
  height: 74px !important;
  padding: 0;
  background: transparent;
  border: 0;
  overflow: visible;
  position: relative;
  isolation: isolate;
}
.v23-site .v19-brand-lockup::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8px 0 5px;
  border-radius: 42%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.15) 0%, rgba(255,255,255,.06) 44%, rgba(255,255,255,0) 76%);
  filter: blur(5px);
}
.v23-site .v19-brand-lockup img {
  width: 88px !important;
  height: 72px !important;
  object-fit: contain;
  filter: drop-shadow(0 0 1px rgba(255,255,255,.86)) drop-shadow(0 2px 4px rgba(0,0,0,.32)) !important;
  opacity: 1 !important;
}
.v23-site .v12-footer-brand a.v19-footer-lockup {
  width: 118px;
  padding: 0;
  background: transparent;
  border: 0;
  position: relative;
  isolation: isolate;
}
.v23-site .v12-footer-brand a.v19-footer-lockup::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8px -5px 6px;
  border-radius: 42%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.13) 0%, rgba(255,255,255,.045) 48%, rgba(255,255,255,0) 78%);
  filter: blur(6px);
}
.v23-site .v12-footer-brand a.v19-footer-lockup img {
  width: 112px;
  height: auto;
  filter: drop-shadow(0 0 1px rgba(255,255,255,.8)) drop-shadow(0 2px 5px rgba(0,0,0,.28)) !important;
  opacity: 1 !important;
}

/* Section rhythm: a slightly tighter first transition and more consistent
   breathing room throughout the main content. */
.v23-site .v12-intro {
  padding-top: 64px;
  padding-bottom: 68px;
}
.v23-site .v12-services {
  padding-top: 82px;
  padding-bottom: 86px;
}
.v23-site .v12-project-support {
  padding-top: 88px;
  padding-bottom: 96px;
}
.v23-site .v12-detail-services {
  padding-top: 76px;
  padding-bottom: 80px;
}
.v23-site .v12-process {
  padding-top: 72px;
  padding-bottom: 76px;
}

/* Core capabilities: equal heading area keeps descriptions and CTAs aligned
   even when one service name naturally needs two lines. */
.v23-site .v14-capability-card .v12-card-body {
  min-height: 284px;
  padding: 28px 28px 26px;
}
.v23-site .v14-capability-card .v12-card-body h3,
.v23-site .v14-capability-card:nth-child(2) .v12-card-body h3 {
  min-height: 58px;
  margin: 20px 0 12px;
  display: flex;
  align-items: flex-start;
  font-size: 24px;
  line-height: 1.08;
  text-wrap: balance;
}
.v23-site .v14-capability-card:nth-child(2) .v12-card-body h3 {
  font-size: 23px;
  letter-spacing: -.038em;
}
.v23-site .v14-capability-card .v12-card-body p {
  min-height: 94px;
  margin-bottom: 18px;
}
.v23-site .v14-capability-card .v12-card-body a {
  margin-top: auto;
}

/* Project-support cards: keep all three titles/body blocks sitting on the
   same optical baseline. */
.v23-site .v12-project-card > div {
  padding: 30px;
}
.v23-site .v12-project-card h3 {
  min-height: 34px;
  margin-top: 42px;
  margin-bottom: 10px;
}
.v23-site .v12-project-card p {
  min-height: 46px;
}

/* Technical Services: preserve the approved two-column architecture while
   reducing unused whitespace and tightening the expanded panel. */
.v23-site .v12-detail-grid {
  grid-template-columns: minmax(300px, 345px) minmax(0, 1fr);
  gap: 58px;
}
.v23-site .v12-detail-intro h2 {
  max-width: 340px;
  font-size: 42px;
  line-height: 1.04;
}
.v23-site .v12-plan-image {
  max-width: 345px;
  margin-top: 26px;
}
.v23-site .v12-accordion.service-accordion summary {
  min-height: 88px;
}
.v23-site .v19-accordion.service-accordion summary strong {
  max-width: 960px;
  text-wrap: balance;
}
.v23-site .v12-accordion .service-content {
  gap: 32px 42px;
  padding-bottom: 34px;
}
.v23-site .v21-has-project-types > .v19-project-types {
  padding: 17px 18px;
}

/* Approach/process alignment: the copy blocks share a consistent reading
   measure and the process cards retain equal visual weight. */
.v23-site .v12-why-copy {
  padding-top: 76px;
  padding-bottom: 76px;
}
.v23-site .v12-reasons article {
  padding-top: 22px;
  padding-bottom: 22px;
}
.v23-site .v12-process-grid {
  margin-top: 48px;
}
.v23-site .v12-process-grid li {
  min-height: 210px;
  padding: 26px 28px;
}

/* Contact: compact the final conversion section without shrinking readable
   type or changing the working form fields/submit behavior. */
.v23-site .v12-contact {
  padding-top: 76px;
  padding-bottom: 80px;
}
.v23-site .v12-contact-grid {
  gap: 72px;
}
.v23-site .v19-credentials {
  margin-top: 28px;
  padding-top: 23px;
}

/* Footer: a deliberate four-column grid with better optical balance. */
.v23-site .v12-footer {
  padding-top: 58px;
}
.v23-site .v12-footer-grid {
  grid-template-columns: minmax(320px,1.2fr) minmax(150px,.52fr) minmax(210px,.7fr) auto;
  gap: clamp(34px,4.5vw,72px);
  align-items: start;
  padding-bottom: 44px;
}
.v23-site .v12-footer-brand p {
  max-width: 360px;
  margin-top: 18px;
}
.v23-site .v12-back-top {
  margin-top: 4px;
}

@media (max-width: 1180px) and (min-width: 721px) {
  .v23-site .v14-capability-card .v12-card-body h3,
  .v23-site .v14-capability-card:nth-child(2) .v12-card-body h3 {
    min-height: 52px;
  }
  .v23-site .v14-capability-card .v12-card-body p {
    min-height: 70px;
  }
}

@media (max-width: 1100px) {
  .v23-site .v12-detail-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .v23-site .v12-plan-image { max-width: 620px; }
  .v23-site .v12-footer-grid {
    grid-template-columns: 1.15fr .6fr .8fr;
    gap: 42px;
  }
}

@media (max-width: 720px) {
  .v23-site .v19-brand-lockup {
    width: 68px !important;
    height: 60px !important;
    padding: 0;
  }
  .v23-site .v19-brand-lockup img {
    width: 62px !important;
    height: 58px !important;
  }
  .v23-site .v19-brand-lockup::before { inset: 8px 0 4px; }

  .v23-site .v12-intro { padding-top: 50px; padding-bottom: 54px; }
  .v23-site .v12-services { padding-top: 58px; padding-bottom: 62px; }
  .v23-site .v12-project-support { padding-top: 62px; padding-bottom: 66px; }
  .v23-site .v12-detail-services { padding-top: 56px; padding-bottom: 60px; }
  .v23-site .v12-process { padding-top: 54px; padding-bottom: 58px; }
  .v23-site .v12-contact { padding-top: 58px; padding-bottom: 62px; }

  .v23-site .v14-capability-card .v12-card-body {
    min-height: 0;
    padding: 22px 22px 21px;
  }
  .v23-site .v14-capability-card .v12-card-body h3,
  .v23-site .v14-capability-card:nth-child(2) .v12-card-body h3 {
    min-height: 0;
    margin: 16px 0 10px;
    display: block;
    font-size: 23px;
  }
  .v23-site .v14-capability-card:nth-child(2) .v12-card-body h3 { font-size: 22px; }
  .v23-site .v14-capability-card .v12-card-body p { min-height: 0; }

  .v23-site .v12-project-card h3,
  .v23-site .v12-project-card p { min-height: 0; }
  .v23-site .v12-detail-intro h2 { font-size: 37px; }
  .v23-site .v12-accordion.service-accordion summary { min-height: 82px; }
  .v23-site .v12-contact-grid { gap: 38px; }

  .v23-site .v12-footer-brand a.v19-footer-lockup { width: 106px; }
  .v23-site .v12-footer-brand a.v19-footer-lockup img { width: 100px; }
  .v23-site .v12-footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .v23-site .v12-footer-brand { grid-column: 1 / -1; }
}


/* =========================================================
   Jx2 v24 — Shelly marked-up revision alignment
   Exact service wording, less construction-heavy imagery,
   stronger brand legibility and generic service labels.
   ========================================================= */

/* Purple supplied logo with a clean white edge on dark surfaces — no white tile. */
.v24-site .v19-brand-lockup,
.v24-site .v12-footer-brand a.v19-footer-lockup {
  background: transparent !important;
  border: 0 !important;
}
.v24-site .v19-brand-lockup img,
.v24-site .v12-footer-brand a.v19-footer-lockup img {
  filter:
    drop-shadow(1px 0 0 rgba(255,255,255,.96))
    drop-shadow(-1px 0 0 rgba(255,255,255,.96))
    drop-shadow(0 1px 0 rgba(255,255,255,.96))
    drop-shadow(0 -1px 0 rgba(255,255,255,.96))
    drop-shadow(0 2px 5px rgba(0,0,0,.34)) !important;
}
.v24-site .v19-brand-lockup::before,
.v24-site .v12-footer-brand a.v19-footer-lockup::before {
  display: none !important;
}

/* Client asked for the small hero descriptor to be more noticeable. */
.v24-site .v12-kicker {
  color: #d8b4ff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-shadow: 0 1px 7px rgba(0,0,0,.62);
}

/* Use the hero width deliberately rather than stacking into a narrow column. */
.v24-site .v12-hero-copy { max-width: 1100px; }
.v24-site .v20-hero-title {
  max-width: 1100px;
  font-size: clamp(52px, 3.3vw, 66px);
  line-height: 1.005;
}
@media (min-width: 1200px) {
  .v24-site .v20-hero-title > span { white-space: nowrap; }
}

/* Core Capabilities: exact revised wording without allowing the long
   reports/certifications title to break the card rhythm. */
.v24-site .v14-capability-card .v12-card-body {
  min-height: 306px;
}
.v24-site .v14-capability-card .v12-card-body h3 {
  min-height: 82px;
  font-size: 23px;
  line-height: 1.08;
}
.v24-site .v14-capability-card:nth-child(2) .v12-card-body h3 {
  min-height: 82px;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -.035em;
}
.v24-site .v14-capability-card .v12-card-media img {
  object-position: center center;
}
.v24-site .v14-capability-card:first-child .v12-card-media img {
  object-position: 48% 44%;
}
.v24-site .v14-capability-card:nth-child(3) .v12-card-media img {
  object-position: 52% 50%;
}

/* Project Support first image now emphasizes property/site conditions rather
   than a grading machine. */
.v24-site .v12-project-card:first-child img {
  object-position: 46% 42%;
}

/* Client requested SERVICES rather than a numeric service count. */
.v24-site .v19-accordion.service-accordion summary {
  grid-template-columns: minmax(0,1fr) auto 26px;
  gap: 18px;
}
.v24-site .v19-accordion.service-accordion summary > small.v24-services-label {
  display: block !important;
  align-self: center;
  margin: 0;
  color: #72767b;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.v24-site .v19-accordion.service-accordion summary strong {
  max-width: 940px;
}

/* The revised drainage/report heading is longer, so preserve readability
   instead of shrinking the whole technical-services section. */
.v24-site .v19-accordion.service-accordion details:nth-child(2) summary strong {
  font-size: 23px;
  line-height: 1.18;
}

/* Keep the exact client service lists easy to scan. */
.v24-site .v12-accordion .service-content li {
  padding-right: 10px;
}

@media (max-width: 1100px) {
  .v24-site .v20-hero-title { max-width: 900px; }
  .v24-site .v20-hero-title > span { white-space: normal; }
  .v24-site .v14-capability-card .v12-card-body,
  .v24-site .v14-capability-card .v12-card-body h3,
  .v24-site .v14-capability-card:nth-child(2) .v12-card-body h3 {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .v24-site .v12-kicker { font-size: 9.5px; }
  .v24-site .v20-hero-title {
    max-width: 100%;
    font-size: clamp(35px, 9.8vw, 43px);
    line-height: 1.025;
  }
  .v24-site .v20-hero-title > span { white-space: normal; }
  .v24-site .v14-capability-card .v12-card-body h3,
  .v24-site .v14-capability-card:nth-child(2) .v12-card-body h3 {
    min-height: 0;
    font-size: 22px;
  }
  .v24-site .v14-capability-card:nth-child(2) .v12-card-body h3 {
    font-size: 20.5px;
  }
  .v24-site .v19-accordion.service-accordion summary {
    grid-template-columns: minmax(0,1fr) auto 22px;
    gap: 10px;
  }
  .v24-site .v19-accordion.service-accordion summary > small.v24-services-label {
    font-size: 8px;
    letter-spacing: .1em;
  }
  .v24-site .v19-accordion.service-accordion details:nth-child(2) summary strong {
    font-size: 19.5px;
    line-height: 1.2;
  }
}
.v24-site .v12-project-card:first-child img { object-position: 50% 18%; }


/* =========================================================
   Jx2 v25 — final client-feedback pass
   ========================================================= */

/* The supplied mark is now preprocessed with purple artwork + white linework.
   Keep it crisp on photography without a white tile or heavy halo. */
.v25-site .v19-brand-lockup img,
.v25-site .v12-footer-brand a.v19-footer-lockup img {
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.38)) !important;
}

/* Keep the exact approved hero wording wide and optically aligned. */
.v25-site .v12-hero-copy { max-width: 1120px; }
.v25-site .v20-hero-title {
  max-width: 1120px;
  letter-spacing: -.047em;
}

/* Client requested no sequence numbers in the discipline strip. */
.v25-site .v12-strip-grid > div::before { display: none !important; content: none !important; }

/* Keep service detail labels generic — no exposed numeric counts. */
.v25-site .v24-services-label { opacity: .86; }

/* Raw property image should read as land/site conditions, not earthmoving work. */
.v25-site .v12-project-card:first-child img { object-position: 50% 48%; }

@media (max-width: 720px) {
  .v25-site .v20-hero-title { letter-spacing: -.045em; }
}


/* =========================================================
   Jx2 v26 — final consistency cleanup
   ========================================================= */

/* Keep the homepage capability card concise while the expanded service
   accordion retains the client's full technical category name. */
.v26-site .v14-capability-card:nth-child(2) .v12-card-body h3 {
  font-size: 24px;
  letter-spacing: -.03em;
}

/* Remove sequence numbers from the approved Project Support cards so the
   visual language matches the cleaned discipline strip and capability cards. */
.v26-site .v12-project-card h3 {
  margin-top: 0;
}



/* Jx2 v27 — client field photography integration. Layout intentionally unchanged. */

/* Jx2 v28 — survey photo framing correction. */
.v12-project-card:nth-child(2) img {
  object-position: 50% 50%;
}


/* =========================================================
   Jx2 v29 — final visual QA and interaction pass
   - Color survey image in Core Capabilities
   - Mobile-safe image focal points
   - Stronger anchor/accordion behavior
   - Final desktop/mobile spacing polish
   ========================================================= */

/* Keep client-provided imagery framed around the useful field subject. */
.v29-site .v14-capability-card:first-child .v12-card-media img {
  object-position: 50% 48%;
}
.v29-site .v14-capability-card:nth-child(2) .v12-card-media img {
  object-position: 50% 42%;
}
.v29-site .v14-capability-card:nth-child(3) .v12-card-media img {
  object-position: 52% 50%;
}
.v29-site .v14-capability-card:nth-child(4) .v12-card-media img {
  object-position: 50% 24%;
}
.v29-site .v12-project-card:first-child img {
  object-position: 50% 44%;
}
.v29-site .v12-project-card:nth-child(2) img {
  object-position: 50% 26%;
}
.v29-site .v12-project-card:nth-child(3) img {
  object-position: 50% 50%;
}

/* Make every in-page target clear the real fixed header, including WP admin bar. */
.v29-site #company,
.v29-site #services,
.v29-site #project-support,
.v29-site #approach,
.v29-site #contact,
.v29-site #civil-engineering,
.v29-site #planning-compliance,
.v29-site #infrastructure,
.v29-site #land-surveying,
.v29-site #project-form {
  scroll-margin-top: calc(var(--jx2-fixed-top) + 96px) !important;
}

/* Slight optical tightening so the last third of the page does not feel oversized. */
.v29-site .v12-process { padding-top: 68px; padding-bottom: 72px; }
.v29-site .v12-contact { padding-top: 78px; padding-bottom: 84px; }
.v29-site .v12-footer { padding-top: 62px; }

@media (max-width: 1100px) {
  .v29-site .v14-capability-card:nth-child(4) .v12-card-media img {
    object-position: 50% 20%;
  }
  .v29-site .v12-project-card:nth-child(2) img {
    object-position: 50% 22%;
  }
  .v29-site #company,
  .v29-site #services,
  .v29-site #project-support,
  .v29-site #approach,
  .v29-site #contact,
  .v29-site #civil-engineering,
  .v29-site #planning-compliance,
  .v29-site #infrastructure,
  .v29-site #land-surveying,
  .v29-site #project-form {
    scroll-margin-top: calc(var(--jx2-fixed-top) + 88px) !important;
  }
}

@media (max-width: 720px) {
  .v29-site .v14-capability-card .v12-card-media {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
  .v29-site .v14-capability-card:first-child .v12-card-media img { object-position: 50% 50%; }
  .v29-site .v14-capability-card:nth-child(2) .v12-card-media img { object-position: 50% 38%; }
  .v29-site .v14-capability-card:nth-child(3) .v12-card-media img { object-position: 52% 50%; }
  .v29-site .v14-capability-card:nth-child(4) .v12-card-media img { object-position: 50% 14%; }
  .v29-site .v12-project-card:first-child img { object-position: 50% 42%; }
  .v29-site .v12-project-card:nth-child(2) img { object-position: 50% 18%; }
  .v29-site .v12-project-card:nth-child(3) img { object-position: 50% 50%; }

  .v29-site .v12-process { padding-top: 56px; padding-bottom: 60px; }
  .v29-site .v12-contact { padding-top: 60px; padding-bottom: 66px; }
  .v29-site .v12-footer { padding-top: 52px; }

  .v29-site #company,
  .v29-site #services,
  .v29-site #project-support,
  .v29-site #approach,
  .v29-site #contact,
  .v29-site #civil-engineering,
  .v29-site #planning-compliance,
  .v29-site #infrastructure,
  .v29-site #land-surveying,
  .v29-site #project-form {
    scroll-margin-top: calc(var(--jx2-fixed-top) + 78px) !important;
  }
}
