:root {
  --ink: #000a2c;
  --navy: #000c3c;
  --navy-2: #001848;
  --navy-3: #002460;
  --paper: #eef3fb;
  --cream: #dce6f4;
  --white: #ffffff;
  --muted: #4d5d78;
  --line: rgba(0, 12, 60, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --sky: #0054c0;
  --sky-2: #1a78e8;
  --gold: #e6b80c;
  --gold-2: #f0cc18;
  --land: #4a8400;
  --ok: #3d6b00;
  --err: #b42318;
  --shadow: 0 24px 60px rgba(0, 12, 60, 0.18);
  --radius: 18px;
  --header-h: 78px;
  --max: 1200px;
  --font: "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
  --display: "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
html, body { margin: 0; padding: 0; max-width: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
body.nav-open { overflow: hidden; height: 100dvh; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; min-width: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 11px; font-weight: 600; color: var(--sky);
}
.hero .eyebrow,
.page-hero .eyebrow,
.section.dark .eyebrow,
.section.navy-2 .eyebrow,
.cta-band .eyebrow {
  color: var(--gold-2);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor;
}
h1, h2, h3, .display { font-family: var(--display); letter-spacing: -0.025em; line-height: 1.12; margin: 0; font-weight: 600; overflow-wrap: break-word; }
h1 { font-size: clamp(36px, 5.4vw, 68px); font-weight: 700; }
h2 { font-size: clamp(28px, 3.6vw, 46px); font-weight: 700; }
h3 { font-size: 22px; font-weight: 700; }
.lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--muted); max-width: none; }
.muted { color: var(--muted); }
.gold { color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 600; font-size: 15px;
  transition: 0.2s ease; white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--sky); color: #fff; }
.btn-primary:hover { background: var(--sky-2); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border-color: var(--line-light); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--sky); }
.btn-line { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-line:hover { border-color: var(--ink); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-2); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 28px; width: min(1280px, calc(100% - 32px));
}
.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand img { width: 50px; height: 50px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.02; }
.brand-text strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--sky);
}
.brand-text strong b {
  font-weight: 700;
  color: var(--navy-3);
  letter-spacing: 0.14em;
}
.brand-text small {
  margin-top: 3px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--land);
  font-weight: 600;
}
.site-footer .brand-text strong { color: #6eb0ff; }
.site-footer .brand-text strong b { color: var(--gold-2); }
.site-footer .brand-text small { color: rgba(240, 204, 24, 0.78); }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav > a, .nav-drop > button {
  padding: 10px 12px; border: 0; background: none; cursor: pointer;
  font-size: 14.5px; font-weight: 500; color: #243040; border-radius: 8px;
}
.nav > a:hover, .nav-drop > button:hover, .nav > a.is-active { color: var(--sky); }
.nav-drop { position: relative; }
.nav-drop > button { display: flex; align-items: center; gap: 6px; }
.nav-drop > button svg { width: 12px; height: 12px; }
.mega {
  position: absolute; top: calc(100% + 8px); left: 0;
  width: 340px; padding: 10px; border-radius: 16px;
  background: #fff; box-shadow: var(--shadow); border: 1px solid var(--line);
  display: none;
}
.nav-drop:hover .mega, .nav-drop:focus-within .mega { display: grid; gap: 4px; }
.mega a {
  display: grid; grid-template-columns: 42px 1fr; gap: 10px; align-items: center;
  padding: 10px; border-radius: 12px;
}
.mega a:hover { background: var(--paper); }
.mega b { display: block; font-size: 14px; }
.mega small { color: var(--muted); font-size: 12px; }
.mega-ico {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--navy-2); color: var(--gold-2);
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
.header-cta { margin-left: 8px; }
.menu-btn {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 44px;
}

/* Hero */
.hero {
  position: relative; min-height: max(640px, calc(100svh - var(--header-h)));
  color: #fff; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--navy) center/cover no-repeat;
  background-image: url("../img/hero.jpg");
}
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; max-width: none;
  object-fit: cover; pointer-events: none;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,12,60,.28) 0%, rgba(0,12,60,.55) 42%, rgba(0,12,60,.92) 100%),
    linear-gradient(90deg, rgba(0,12,60,.55), transparent 55%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .22;
  background-image:
    linear-gradient(rgba(0,84,192,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,84,192,.35) 1px, transparent 1px);
  background-size: 72px 72px; mask-image: linear-gradient(#000, transparent 80%);
}
.hero-inner { position: relative; z-index: 2; padding: 80px 0 132px; }
.hero p { max-width: 640px; color: rgba(255,255,255,.82); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.stats-wrap {
  position: relative; z-index: 4;
  margin-top: -118px;
  margin-bottom: 8px;
}
.stats-wrap + .section { padding-top: 40px; }
.stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 12, 60, 0.08);
  box-shadow: 0 28px 60px rgba(0, 12, 60, 0.18);
}
.stat {
  background: #fff;
  padding: 22px 20px 20px;
  border-right: 1px solid rgba(0, 12, 60, 0.08);
  animation: statIn .7s ease both;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.stat:last-child { border-right: 0; }
.stat:nth-child(1) { animation-delay: .05s; }
.stat:nth-child(2) { animation-delay: .14s; }
.stat:nth-child(3) { animation-delay: .23s; }
.stat:nth-child(4) { animation-delay: .32s; }
.stat b {
  display: block; font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 38px); color: var(--navy); letter-spacing: -0.03em;
  line-height: 1.1;
  overflow-wrap: break-word;
}
.stat span {
  color: var(--muted); font-size: 13px; display: block;
  line-height: 1.4; overflow: visible;
}
.stat.featured {
  background: linear-gradient(165deg, #1a78e8 0%, #0054c0 48%, #003c9c 100%);
  border-right: 0;
}
.stat.featured b { color: var(--gold-2); }
.stat.featured span { color: rgba(255,255,255,.82); }
@keyframes statIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .stat { animation: none; }
  .practices-video, .practices-scan, .services-video, .practice-video { display: none; }
  .practices-video, .services-video, .practice-bg { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .practice-card, .practice-media img { transition: none; }
  .audience-card, .audience-media, .audience-icon, .audience-card .num::after { transition: none; }
  .thread-bg-a, .thread-bg-b, .thread-line::after, .thread-icon svg { animation: none !important; }
  .thread-icon svg { stroke-dashoffset: 0; }
  .practice-thread article { opacity: 1; transform: none; }
}

/* Sections */
.section { padding: 88px 0; }
.section-head { display: grid; gap: 14px; margin-bottom: 40px; max-width: none; width: 100%; }
.section-head h2 { max-width: none; }
.section.dark { background: var(--navy); color: #fff; }
.section.paper { background: var(--paper); }
.section.navy-2 { background: var(--navy-2); color: #fff; }

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,.8,.24,1), transform .8s cubic-bezier(.22,.8,.24,1);
  transition-delay: var(--d, 0s);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.practice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 28px rgba(0, 12, 60, .06);
  transition: transform .4s cubic-bezier(.22,.8,.24,1), box-shadow .4s ease, border-color .3s ease;
}
.practice-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy);
}
.practice-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .8s cubic-bezier(.22,.8,.24,1);
}
.practice-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
  background: #fff;
}
.practice-index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.practice-kicker {
  margin: 6px 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sky);
}
.practice-card h3 {
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
}
.practice-card p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}
.practice-go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sky);
}
.practice-go::after {
  content: "→";
  transition: transform .25s ease;
}
.practice-card:hover,
.practice-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(0, 84, 192, .28);
  box-shadow: 0 22px 48px rgba(0, 12, 60, .12);
}
.practice-card:hover .practice-media img,
.practice-card:focus-visible .practice-media img { transform: scale(1.06); }
.practice-card:hover .practice-go::after,
.practice-card:focus-visible .practice-go::after { transform: translateX(4px); }
.practice-video, .practice-bg { display: none; }
.practice-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 16px; }
.chip {
  font-size: 11px; letter-spacing: .04em; text-transform: uppercase; font-weight: 600;
  padding: 5px 9px; border-radius: 999px; border: 1px solid var(--line-light);
  background: rgba(255,255,255,.08);
}
.practice-card .btn { align-self: flex-start; }

.thread-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.thread-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.thread-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  max-width: none;
  object-fit: cover;
}
.thread-bg-a {
  opacity: .28;
  animation: threadDrift 32s ease-in-out infinite alternate;
}
.thread-bg-b {
  opacity: .12;
  mix-blend-mode: luminosity;
  transform: scale(1.12);
  animation: threadDrift 40s ease-in-out infinite alternate-reverse;
}
.thread-section::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(1200px 480px at 18% 0%, rgba(0,84,192,.28), transparent 58%),
    linear-gradient(180deg, rgba(0,8,32,.78) 0%, rgba(0,10,40,.88) 46%, rgba(0,8,28,.94) 100%);
  pointer-events: none;
}
.thread-section > .wrap { position: relative; z-index: 2; }
@keyframes threadDrift {
  from { transform: scale(1.04) translate3d(-1.4%, 0, 0); }
  to { transform: scale(1.12) translate3d(1.6%, -1.2%, 0); }
}

.connect {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.connect-step {
  background: rgba(255,255,255,.05); border: 1px solid var(--line-light);
  border-radius: 16px; padding: 20px 16px 22px; min-height: 180px;
  backdrop-filter: blur(8px);
}
.connect-icon {
  display: grid; place-items: center;
  width: 36px; height: 36px; margin-bottom: 12px;
  border-radius: 50%;
  color: var(--gold-2);
  border: 1px solid rgba(240,204,24,.4);
  background: rgba(0,12,60,.45);
}
.connect-icon svg { width: 18px; height: 18px; }
.connect-step em {
  display: block; color: var(--gold); font-style: normal;
  font-size: 12px; letter-spacing: .16em; margin-bottom: 10px;
}
.connect-step p { margin: 10px 0 0; color: rgba(255,255,255,.68); font-size: 14px; }

.practice-thread {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin: 0 0 28px;
}
.thread-line {
  position: absolute;
  left: 10%; right: 10%;
  top: 58px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(240,204,24,.38), transparent);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: scaleX(.4);
  transform-origin: left center;
  transition: opacity .6s ease, transform 1.1s cubic-bezier(.22,.8,.24,1);
}
.practice-thread.is-in .thread-line {
  opacity: 1;
  transform: scaleX(1);
}
.thread-line::after {
  content: "";
  position: absolute; top: -3px; left: 0;
  width: 72px; height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  filter: blur(.2px);
  opacity: 0;
}
.practice-thread.is-in .thread-line::after {
  animation: threadPulse 2.8s ease-in-out 0.7s infinite;
}
@keyframes threadPulse {
  0% { left: 0; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: calc(100% - 72px); opacity: 0; }
}
.practice-thread article {
  position: relative; z-index: 1;
  background: rgba(8,16,48,.62);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px; padding: 12px 12px 20px;
  backdrop-filter: blur(10px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22,.8,.24,1), border-color .3s ease, box-shadow .4s ease;
}
.js .practice-thread article {
  opacity: 0;
  transform: translateY(18px);
}
.js .practice-thread.is-in article { opacity: 1; transform: none; }
.js .practice-thread.is-in article:nth-of-type(1) { transition-delay: .08s; }
.js .practice-thread.is-in article:nth-of-type(2) { transition-delay: .16s; }
.js .practice-thread.is-in article:nth-of-type(3) { transition-delay: .24s; }
.js .practice-thread.is-in article:nth-of-type(4) { transition-delay: .32s; }
.practice-thread article:hover,
.js .practice-thread.is-in article:hover {
  transform: translateY(-6px);
  border-color: rgba(240,204,24,.42);
  box-shadow: 0 18px 36px rgba(0,0,0,.28);
}
.thread-visual {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--navy-2);
}
.thread-visual img {
  width: 100%; height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform .8s cubic-bezier(.22,.8,.24,1);
}
.practice-thread article:hover .thread-visual img { transform: scale(1.1); }
.thread-icon {
  position: absolute; left: 10px; bottom: 10px;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--gold-2);
  background: rgba(0,10,36,.86);
  border: 1px solid rgba(240,204,24,.55);
  box-shadow: 0 8px 18px rgba(0,0,0,.35);
}
.thread-icon svg {
  width: 22px; height: 22px;
}
.js .thread-icon svg {
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
}
.js .practice-thread.is-in .thread-icon svg {
  animation: iconDraw .9s ease forwards;
}
.practice-thread.is-in article:nth-of-type(1) .thread-icon svg { animation-delay: .12s; }
.practice-thread.is-in article:nth-of-type(2) .thread-icon svg { animation-delay: .24s; }
.practice-thread.is-in article:nth-of-type(3) .thread-icon svg { animation-delay: .36s; }
.practice-thread.is-in article:nth-of-type(4) .thread-icon svg { animation-delay: .48s; }
@keyframes iconDraw {
  to { stroke-dashoffset: 0; }
}
.practice-thread em {
  display: block; color: var(--gold-2); font-style: normal;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; margin: 0 6px 8px;
}
.practice-thread h3 { font-size: 18px; margin: 0 6px 8px; }
.practice-thread p { margin: 0 6px; color: rgba(255,255,255,.72); font-size: 14px; }

.stack-formula {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px;
  margin-top: 8px; max-width: 920px;
}
.stack-formula span {
  background: var(--navy); color: #fff;
  padding: 10px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
}
.stack-formula i { color: var(--gold); font-style: normal; font-weight: 800; }

.flow-chain {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px;
}
.flow-chain span {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line-light);
  color: #fff;
  padding: 10px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
}
.evidence-shot { margin: 8px 0 0; }
.evidence-shot img {
  width: 100%; border-radius: 18px; display: block;
  border: 1px solid var(--line);
}
.evidence-shot figcaption {
  font-size: 13px; color: var(--muted); margin-top: 10px; line-height: 1.45;
}
.evidence-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px;
}

.filter-label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.project-toolbar + .filter-label { margin-top: 6px; }

.survey-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.survey-matrix details,
.feature-details details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
}
.survey-matrix summary,
.feature-details summary {
  font-weight: 700;
  cursor: pointer;
  list-style-position: outside;
}
.survey-matrix ul,
.feature-details ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.lidar-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.lidar-steps li {
  list-style: none;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 16px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.lidar-steps b { display: block; color: #fff; margin-bottom: 6px; }
.lidar-steps em {
  display: block;
  color: var(--gold);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .12em;
  margin-bottom: 8px;
}
.lidar-bridge {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}
.lidar-bridge article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
}
.lidar-bridge span {
  align-self: center;
  color: var(--gold);
  font-size: 28px;
  font-weight: 700;
}
.lidar-bridge em {
  display: block;
  color: var(--sky);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.feature-details { display: grid; gap: 10px; margin-top: 8px; }

.audience { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.audience-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0 0 22px;
  min-height: 0;
  cursor: default;
  transition: transform .4s cubic-bezier(.22,.8,.24,1), box-shadow .4s ease, border-color .3s ease;
}
.audience-media {
  display: block;
  height: 112px;
  background: var(--navy) center/cover no-repeat;
  transform: scale(1.04);
  transition: transform .7s cubic-bezier(.22,.8,.24,1), filter .4s ease;
  filter: saturate(.85);
}
.audience-card::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 112px;
  background: linear-gradient(180deg, rgba(0,12,60,.12), rgba(0,12,60,.38));
  z-index: 1;
  pointer-events: none;
}
.audience-icon {
  position: relative;
  z-index: 2;
  display: grid; place-items: center;
  width: 46px; height: 46px;
  margin: -23px 0 12px 18px;
  border-radius: 50%;
  color: var(--sky);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(0,12,60,.12);
  transition: transform .35s ease, color .3s ease, border-color .3s ease, background .3s ease;
}
.audience-icon svg { width: 22px; height: 22px; }
.audience-card .num,
.audience-card b,
.audience-card p { position: relative; z-index: 2; display: block; padding: 0 18px; }
.audience-card .num {
  color: var(--gold);
  margin-bottom: 6px;
}
.audience-card .num::after {
  content: "";
  display: block;
  width: 28px; height: 2px;
  margin-top: 8px;
  background: var(--gold);
  transform: scaleX(.45);
  transform-origin: left;
  transition: transform .35s ease;
}
.audience-card b { margin: 0 0 8px; font-size: 18px; color: var(--ink); }
.audience-card p { margin: 0; }
.audience-card:hover,
.audience-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(0,84,192,.28);
  box-shadow: 0 22px 44px rgba(0,12,60,.14);
}
.audience-card:hover .audience-media,
.audience-card:focus-within .audience-media {
  transform: scale(1.12);
  filter: saturate(1.05);
}
.audience-card:hover .audience-icon,
.audience-card:focus-within .audience-icon {
  transform: translateY(-2px) rotate(-6deg);
  color: var(--gold-2);
  border-color: rgba(240,204,24,.55);
  background: var(--navy);
}
.audience-card:hover .num::after,
.audience-card:focus-within .num::after { transform: scaleX(1); }
.num { font-family: var(--display); color: var(--sky); font-size: 13px; letter-spacing: .12em; }
.practice-card .num, .practice-index { color: var(--gold); }

.project-toolbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.filter-btn {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 8px 14px; cursor: pointer; font-size: 13px; font-weight: 600;
}
.filter-btn.is-on, .filter-btn:hover { background: var(--sky); color: #fff; border-color: var(--sky); }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.project-grid.highlights { align-items: stretch; }
.project-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column; min-height: 100%;
  color: inherit; text-decoration: none;
}
.project-card .thumb {
  height: 150px; background: var(--navy-2) center/cover no-repeat;
  position: relative;
}
.project-card .thumb span {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(0,12,60,.75); color: #fff; font-size: 11px;
  padding: 4px 8px; border-radius: 999px; letter-spacing: .06em; text-transform: uppercase;
}
.project-card .body { padding: 18px; display: grid; gap: 8px; flex: 1; }
.project-card h3 { font-size: 18px; }
.meta { font-size: 13px; color: var(--muted); }
.scale { font-weight: 700; color: var(--navy-2); font-size: 14px; }

.cta-band {
  background:
    linear-gradient(120deg, rgba(0,12,60,.88), rgba(0,36,96,.78)),
    var(--navy) center/cover no-repeat;
  color: #fff; border-radius: 28px; padding: 48px 44px;
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
}
.cta-band p { color: rgba(255,255,255,.75); max-width: 520px; }

.site-footer {
  position: relative;
  background: #000617;
  color: rgba(255,255,255,.78);
  padding: 0;
  font-size: 14px;
  overflow: hidden;
}
.foot-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.foot-bg img {
  width: 100%; height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 30%;
  opacity: .32;
  filter: saturate(.75) contrast(1.05);
}
.site-footer::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,8,28,.72) 0%, rgba(0,10,36,.86) 42%, rgba(0,6,20,.94) 100%),
    linear-gradient(rgba(0,84,192,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,84,192,.1) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  pointer-events: none;
}
.foot-accent {
  position: relative; z-index: 2;
  height: 2px;
  background: linear-gradient(90deg, transparent 4%, var(--gold) 28%, var(--sky) 72%, transparent 96%);
}
.site-footer .wrap { position: relative; z-index: 2; padding-top: 72px; padding-bottom: 10px; }
.foot-grid { display: grid; grid-template-columns: minmax(280px, 1.5fr) 0.9fr 0.9fr minmax(240px, 1.15fr); gap: 40px; align-items: start; }
.site-footer h4 {
  color: rgba(255,255,255,.92); margin: 0 0 18px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 700;
}
.site-footer h4::after {
  content: ""; display: block; width: 22px; height: 1.5px; margin-top: 12px; background: var(--gold);
}
.site-footer a:not(.brand):not(.btn) { display: block; padding: 5px 0; color: rgba(255,255,255,.68); transition: .18s ease; }
.site-footer a:not(.brand):not(.btn):hover { color: #fff; }
.site-footer .brand,
.site-footer .foot-brand {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  margin: 0 0 22px;
  padding: 0;
  color: inherit;
}
.site-footer .brand img,
.site-footer .foot-brand img {
  flex: 0 0 52px;
  width: 52px; height: 52px;
  background: transparent;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.4));
}
.site-footer .brand-text { min-width: 0; }
.site-footer .brand-text strong {
  font-size: 18px;
  letter-spacing: 0.14em;
  color: #7ec4ff;
  white-space: nowrap;
}
.site-footer .brand-text strong b { color: var(--gold-2); }
.site-footer .brand-text small {
  display: block !important;
  color: rgba(240, 204, 24, 0.7);
  white-space: nowrap;
}
.foot-blurb { max-width: 340px; line-height: 1.65; margin: 0 0 20px; color: rgba(255,255,255,.7); }
.foot-contact { display: grid; gap: 6px; margin: 0 0 20px; }
.site-footer .foot-contact a.foot-line {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: rgba(255,255,255,.78);
  line-height: 1.45;
}
.site-footer .foot-contact a.foot-line:hover { color: #fff; }
.foot-ico {
  flex: 0 0 34px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(240,204,24,.38);
  background: rgba(0,12,48,.7);
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}
.foot-ico svg {
  display: block;
  width: 15px; height: 15px;
  max-width: none;
  fill: var(--gold-2);
}
.foot-line span:last-child { padding-top: 7px; }
.foot-cta {
  display: flex; flex-direction: column; align-items: flex-start;
}
.foot-cta p { margin: 0; max-width: 280px; line-height: 1.6; }
.site-footer .btn {
  display: inline-flex; width: auto; max-width: 100%;
  margin-top: 16px; padding: 0 20px; white-space: nowrap;
}
.socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.socials a {
  width: 42px; height: 42px; padding: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color: #fff;
}
.socials a:hover {
  background: var(--sky); color: #fff; border-color: var(--sky);
  transform: translateY(-2px);
}
.socials a[aria-label="LinkedIn"]:hover { background: #0a66c2; color: #fff; border-color: #0a66c2; }
.socials a[aria-label="Facebook"]:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.socials a[aria-label="Instagram"]:hover { background: #e1306c; color: #fff; border-color: #e1306c; }
.socials a[aria-label="YouTube"]:hover { background: #ff0000; color: #fff; border-color: #ff0000; }
.socials a[aria-label="WhatsApp"]:hover { background: #25d366; color: #fff; border-color: #25d366; }
.socials a[aria-label="Email"]:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }
.foot-copy {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 48px;
  padding: 18px 0 22px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
  color: rgba(255,255,255,.48); font-size: 13px;
}

/* Inner pages */
.page-hero {
  background: var(--navy); color: #fff; padding: 72px 0 56px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,84,192,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,84,192,.15) 1px, transparent 1px);
  background-size: 64px 64px; opacity: .35; pointer-events: none;
}
.crumbs { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.crumbs a { color: var(--sky-2); }

.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cap-item {
  border: 1px solid var(--line); border-radius: 14px; padding: 16px 16px 14px; background: #fff;
}
.cap-item b { display: block; margin-bottom: 4px; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.process-6 { grid-template-columns: repeat(6, 1fr); }
.process article {
  background: var(--navy-2); color: #fff; border-radius: 16px; padding: 20px;
}
.process em { color: var(--gold); font-style: normal; font-size: 12px; letter-spacing: .14em; }
.process article p { margin: 8px 0 0; color: rgba(255,255,255,.72); font-size: 14px; }
.section.dark .cap-item {
  background: rgba(255,255,255,.05);
  border-color: var(--line-light);
  color: #fff;
}
.section.dark .cap-item .muted { color: rgba(255,255,255,.7); }
.who-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.who-pills span {
  padding: 10px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; font-size: 14px; font-weight: 600;
}

.why-list { display: grid; gap: 12px; }
.why-list li { list-style: none; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; }
ul.why-list { margin: 0; padding: 0; }

.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.team.team-solo {
  grid-template-columns: 1fr;
  width: 100%;
}
.team.team-solo article {
  display: grid;
  grid-template-columns: 280px minmax(260px, 1fr) minmax(320px, 1.15fr);
  align-items: stretch;
}
.team.team-solo .team-photo {
  aspect-ratio: auto;
  min-height: 100%;
}
.team.team-solo .team-photo img { object-position: 50% 12%; }
.team.team-solo .team-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 32px;
}
.team.team-solo .team-body .muted { margin: 10px 0 0; max-width: 58ch; }
.team.team-solo .team-icons { margin-top: 18px; }
.team.team-solo .team-icons a { color: inherit; text-decoration: none; }
.team.team-solo .team-icons a:hover { color: var(--sky); }
.founder-work {
  margin: 0;
  position: relative;
  min-height: 320px;
  background: var(--navy-2);
}
.founder-work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-work figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 12, 40, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.team article {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 0;
  overflow: hidden; min-height: 0;
  box-shadow: 0 12px 28px rgba(0, 12, 60, 0.06);
  display: flex; flex-direction: column;
}
.team small { color: var(--sky); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; font-size: 11px; }
.team-photo { position: relative; aspect-ratio: 3 / 4; background: var(--navy-2); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.team-body { padding: 16px 16px 18px; }
.team-body h3 { font-size: 20px; margin: 6px 0 4px; }
.team-body .muted { margin: 0; font-size: 14px; }
.team article.featured { border-color: rgba(0, 84, 192, 0.28); box-shadow: 0 16px 36px rgba(0, 12, 60, 0.1); }
.team-flag {
  position: absolute; left: 12px; bottom: 12px;
  background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.team-icons { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 8px; }
.team-icons li {
  display: grid; grid-template-columns: 18px 1fr; gap: 8px; align-items: center;
  font-size: 13px; font-weight: 600; color: var(--navy);
}
.team-icons svg { width: 18px; height: 18px; color: var(--sky); }

.about-hero {
  background:
    linear-gradient(180deg, rgba(0,12,60,.42) 0%, rgba(0,12,60,.78) 55%, rgba(0,8,40,.94) 100%),
    url("../img/plan-master.jpg") center 35% / cover no-repeat;
  min-height: 460px;
  display: flex; align-items: flex-end;
}
.about-hero .wrap { position: relative; z-index: 1; max-width: 860px; padding-bottom: 8px; }
.about-hero .lede { color: rgba(255,255,255,.82); margin-top: 16px; max-width: 62ch; }
.contact-hero {
  background:
    linear-gradient(180deg, rgba(0,12,60,.45) 0%, rgba(0,12,60,.78) 52%, rgba(0,8,40,.94) 100%),
    url("../img/hero.jpg?v=2") center 40% / cover no-repeat;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}
.contact-hero .wrap { position: relative; z-index: 1; max-width: 860px; padding-bottom: 8px; }
.contact-hero .lede { color: rgba(255,255,255,.82); margin-top: 16px; max-width: 62ch; }
.about-flow {
  list-style: none; margin: 0 0 48px; padding: 0;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.about-flow li {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 18px 14px 16px;
  box-shadow: 0 10px 24px rgba(0, 12, 60, 0.05);
}
.about-flow em { display: block; color: var(--gold); font-style: normal; font-size: 11px; font-weight: 800; letter-spacing: .12em; margin: 10px 0 6px; }
.about-flow b { display: block; font-size: 16px; }
.about-flow p { margin: 6px 0 0; color: var(--muted); font-size: 13px; }
.about-ico {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--navy); color: var(--gold-2);
  display: grid; place-items: center;
}
.about-ico svg { width: 20px; height: 20px; }
.about-shot { margin: 0; }
.about-shot img { width: 100%; border-radius: 18px; display: block; min-height: 280px; object-fit: cover; }
.about-shot figcaption { font-size: 13px; color: var(--muted); margin-top: 10px; }
.about-caps { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 10px; }
.about-caps li {
  display: grid; grid-template-columns: 64px 1fr; gap: 12px; align-items: center;
  background: var(--paper); border-radius: 12px; padding: 10px 12px; font-weight: 600;
}
.about-caps span {
  display: grid; place-items: center; min-height: 28px;
  background: var(--navy); color: var(--gold-2);
  border-radius: 8px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
}
.eng-deck .team {
  margin-top: 28px;
}
.eng-deck .team article {
  background: #fff;
  border: 1px solid rgba(74, 50, 44, 0.08);
  box-shadow: 0 10px 28px rgba(74, 50, 44, 0.05);
}
.eng-deck .team small { color: var(--eng-orange); }
.eng-deck .team-body p { color: var(--eng-ink); margin: 0; }
.eng-deck .team-icons li { color: var(--eng-brown); }
.eng-deck .team-icons svg { color: var(--eng-orange); }
.eng-deck .team article.featured {
  border-color: rgba(232, 119, 49, 0.28);
  box-shadow: 0 16px 36px rgba(74, 50, 44, 0.08);
}
.eng-deck .about-ico { background: var(--eng-orange); color: #fff; }
.eng-deck .about-flow em { color: var(--eng-orange); }
.eng-deck .about-flow b { font-family: var(--eng-serif); color: var(--eng-brown); }
.eng-deck .about-caps li { background: #fff; }
.eng-deck .about-caps span { background: var(--eng-brown-2); color: #fff; }
.eng-deck .about-shot figcaption { color: var(--eng-ink); }
.eng-deck .form {
  min-width: 0;
  align-self: start;
  box-shadow: 0 10px 28px rgba(74, 50, 44, 0.06);
  border-color: rgba(74, 50, 44, 0.08);
}
.eng-deck .contact-icons a {
  background: #fff;
  border-color: rgba(74, 50, 44, 0.12);
}
.eng-deck .contact-layout { align-items: start; }
.eng-deck .filter-label { color: var(--eng-orange); }
.eng-deck .filter-btn {
  border-color: rgba(74, 50, 44, 0.12);
}
.eng-deck .filter-btn.is-on,
.eng-deck .filter-btn:hover {
  background: var(--eng-brown);
  color: #fff;
  border-color: var(--eng-brown);
}
.eng-deck .project-card {
  border-color: rgba(74, 50, 44, 0.08);
  box-shadow: 0 10px 28px rgba(74, 50, 44, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.eng-deck .project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(74, 50, 44, 0.1);
}
.eng-deck .project-card h3 {
  font-family: var(--eng-serif);
  color: var(--eng-brown);
  font-size: 20px;
}
.eng-deck .scale { color: var(--eng-orange); }
.eng-deck .project-card .thumb span {
  background: var(--eng-orange);
  color: #fff;
}
.eng-deck .project-card .btn-line {
  border-color: rgba(74, 50, 44, 0.18);
  color: var(--eng-brown);
  justify-self: start;
  margin-top: auto;
}
.eng-cta .wrap { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.proj-shot {
  width: 100%;
  min-height: 280px;
  max-height: 460px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.proj-facts { display: grid; gap: 12px; align-content: start; }
.proj-facts article {
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(74, 50, 44, 0.08);
  box-shadow: 0 10px 28px rgba(74, 50, 44, 0.05);
}
.proj-facts b {
  display: block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--eng-orange);
  margin-bottom: 6px;
}
.proj-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.proj-story article {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid rgba(74, 50, 44, 0.08);
  box-shadow: 0 10px 28px rgba(74, 50, 44, 0.05);
}
.proj-story h3 { margin: 0 0 8px; }
.proj-story p { margin: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.panel {
  background: var(--navy-2); color: #fff; border-radius: 22px; padding: 32px; min-height: 280px;
}
.panel li { margin: 8px 0; color: rgba(255,255,255,.8); }

.form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 28px;
}
.form .full { grid-column: 1 / -1; }
label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; background: var(--white);
}
textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); }
.alert { grid-column: 1 / -1; padding: 12px 14px; border-radius: 12px; display: none; }
.alert.ok { display: block; background: #e8f6ee; color: var(--ok); }
.alert.err { display: block; background: #fdecec; color: var(--err); }

.detail {
  display: none; background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: 28px; margin-top: 18px;
}
.detail.is-open { display: block; }
.detail-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 28px; }
.kv { display: grid; gap: 10px; }
.kv div { border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.kv b { display: block; font-size: 12px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }

.mobile-nav {
  display: none; position: fixed; inset: var(--header-h) 0 0 0; z-index: 40;
  background: #fff; padding: 18px; overflow: auto;
}
.mobile-nav.is-open { display: grid; gap: 6px; align-content: start; }
.mobile-nav a, .mobile-nav summary {
  padding: 14px 8px; border-bottom: 1px solid var(--line); font-weight: 600;
  display: block;
}
.mobile-nav details a { padding-left: 16px; font-weight: 500; }
.mobile-nav .btn { margin-top: 16px; width: 100%; }

@media (max-width: 1200px) {
  .nav > a, .nav-drop > button { padding: 8px 9px; font-size: 13.5px; }
  .header-cta { min-height: 44px; padding: 0 16px; font-size: 14px; }
  .site-header .wrap { gap: 16px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 1100px) {
  .connect { grid-template-columns: 1fr 1fr; }
  .practice-thread { grid-template-columns: 1fr 1fr; }
  .thread-line { display: none; }
  .audience, .process, .team, .about-flow { grid-template-columns: 1fr 1fr; }
  .team.team-solo { grid-template-columns: 1fr; }
  .team.team-solo article { grid-template-columns: 240px 1fr; }
  .founder-work { grid-column: 1 / -1; min-height: 240px; }
  .about-flow { grid-template-columns: repeat(3, 1fr); }
  .process.process-6 { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid rgba(0, 12, 60, 0.08); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(n+3) { border-bottom: 0; }
}
@media (max-width: 980px) {
  :root { --header-h: 64px; }
  .nav, .header-cta { display: none !important; }
  .menu-btn {
    display: grid !important;
    place-items: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: 8px;
    color: var(--navy);
    font-size: 22px;
    background: #fff;
    border: 1px solid var(--line);
    z-index: 2;
  }
  .site-header .wrap { justify-content: space-between; }
  .brand { min-width: 0; overflow: hidden; }
  .brand-text { min-width: 0; }
  .eyebrow { flex-wrap: wrap; max-width: 100%; letter-spacing: 0.1em; }
  h1, h2, h3, p, li, .lede { overflow-wrap: break-word; word-wrap: break-word; max-width: 100%; }
  .geo-3 article, .geo-svc article, .eng-card, .rea-four article { min-width: 0; }
  .site-header { height: var(--header-h); }
  .site-header .wrap { gap: 10px; width: calc(100% - 20px); }
  .brand { gap: 8px; min-width: 0; flex: 1; }
  .brand img { width: 40px; height: 40px; }
  .brand-text strong { font-size: 15px; letter-spacing: 0.08em; }
  .brand-text strong b { letter-spacing: 0.06em; }
  .brand-text small { font-size: 8px; letter-spacing: 0.1em; }
  .hero { min-height: calc(100svh - var(--header-h)); }
  .hero-inner { padding: 32px 0 100px; }
  .hero p { font-size: 15px; }
  .hero-actions { gap: 10px; }
  .stats { grid-template-columns: 1fr 1fr; border-radius: 16px; }
  .stat { border-bottom: 1px solid rgba(0, 12, 60, 0.08); padding: 18px 16px; }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(n+3) { border-bottom: 0; }
  .stats-wrap { margin-top: -88px; }
  .stats-wrap + .section { padding-top: 28px; }
  .practice-grid, .project-grid, .foot-grid, .cap-grid, .split, .form, .detail-grid,
  .survey-matrix, .lidar-steps, .evidence-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lidar-bridge { grid-template-columns: 1fr; }
  .lidar-bridge span { display: none; }
  .project-grid.highlights { grid-template-columns: 1fr; }
  .connect { grid-template-columns: 1fr; }
  .practice-thread { grid-template-columns: 1fr; }
  .thread-line { display: none; }
  .connect-step { min-height: 0; }
  .cta-band { flex-direction: column; align-items: stretch; padding: 28px 20px; }
  .page-hero { padding: 40px 0 32px; }
  .section { padding: 56px 0; }
  .mobile-nav { z-index: 70; padding: 12px 16px 90px; }
  body.nav-open .sky-dock { visibility: hidden; pointer-events: none; }
  .eng-slide h2, .plan-deck .eng-pane h2, .plan-prose h2 { font-size: clamp(26px, 7vw, 40px); }
  .eng-pane, .plan-deck .eng-pane { padding: 28px 20px 40px; max-width: none; }
  .geo-split { gap: 22px; }
  .geo-split img { max-height: 420px; object-fit: cover; }
  .geo-pill { max-width: 100%; white-space: normal; line-height: 1.4; }
  .process.process-6 { grid-template-columns: 1fr 1fr; }
  .site-footer .brand,
  .site-footer .foot-brand {
    flex: 0 0 auto !important;
    width: max-content;
    max-width: 100%;
  }
  .site-footer .brand img,
  .site-footer .foot-brand img {
    width: 46px; height: 46px; flex: 0 0 46px;
  }
}
@media (max-width: 680px) {
  .wrap { width: calc(100% - 24px); }
  body { font-size: 16px; padding-bottom: 72px; }
  h1 { font-size: 28px; line-height: 1.15; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  .lede { font-size: 16px; }
  .btn { min-height: 46px; padding: 0 16px; font-size: 14px; white-space: normal; text-align: center; }
  .site-footer .btn { width: auto; white-space: nowrap; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .practice-grid, .project-grid, .foot-grid, .cap-grid, .split, .form, .detail-grid,
  .audience, .process, .team, .survey-matrix, .lidar-steps, .about-flow {
    grid-template-columns: 1fr;
  }
  .about-flow { grid-template-columns: 1fr 1fr; }
  .team { grid-template-columns: 1fr 1fr; }
  .team.team-solo { grid-template-columns: 1fr; }
  .team.team-solo article { grid-template-columns: 1fr; }
  .team.team-solo .team-photo { min-height: 320px; }
  .founder-work { min-height: 220px; }
  .about-hero, .contact-hero { min-height: 320px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 16px 12px; border-bottom: 1px solid rgba(0, 12, 60, 0.08); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(n+3) { border-bottom: 0; }
  .stat b { font-size: 22px; }
  .stat span { font-size: 12px; line-height: 1.35; }
  .stats-wrap { margin-top: -72px; }
  .section { padding: 40px 0; }
  .section-head { margin-bottom: 24px; }
  .practice-card { min-height: 0; padding: 0; }
  .cta-band { padding: 22px 16px; border-radius: 18px; gap: 14px; }
  .cta-band > div { width: 100%; }
  .cta-band .btn { width: 100%; }
  .form { padding: 16px; gap: 12px; }
  .panel { padding: 20px; min-height: 0; }
  .detail { padding: 16px; }
  .split { gap: 20px; }
  .page-hero { padding: 32px 0 24px; }
  input, select, textarea { font-size: 16px; }
  .contact-icons a { width: 100%; justify-content: center; }
  .foot-copy { flex-direction: column; }
  .site-footer .wrap { padding-top: 48px; }
  .foot-grid { gap: 28px; }
  .sky-dock {
    right: 0; left: 0; bottom: 0;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 0;
    padding: 8px 6px calc(8px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(0, 12, 60, 0.08);
  }
  .sky-fab { width: 46px; height: 46px; box-shadow: none; }
  .sky-fab span { display: none; }
  .sky-chat {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 12px;
    right: 12px;
    width: auto;
  }
}
@media (max-width: 380px) {
  .brand-text small { display: none; }
  .brand-text strong { font-size: 14px; }
  .site-footer .brand-text small { display: block !important; font-size: 8px; }
  .site-footer .brand-text strong { font-size: 15px; letter-spacing: 0.12em; }
  .site-footer .brand img,
  .site-footer .foot-brand img {
    width: 40px; height: 40px; flex: 0 0 40px;
  }
}

/* Floating call / mail / WhatsApp / chat */
.sky-dock {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.sky-fab {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  border: 0; color: #fff; cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 12, 60, 0.22);
  transition: transform .28s cubic-bezier(.22,.8,.24,1), box-shadow .28s ease;
  position: relative;
}
.sky-fab::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  pointer-events: none;
  transform: scale(.86);
}
.sky-fab:hover,
.sky-fab:focus-visible {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 18px 32px rgba(0, 12, 60, 0.32);
}
.sky-fab:hover::after,
.sky-fab:focus-visible::after {
  animation: fabRing .7s ease-out;
}
.sky-fab:active { transform: translateY(-1px) scale(.98); }
.sky-fab svg { width: 22px; height: 22px; fill: currentColor; transition: transform .28s ease; }
.sky-fab:hover svg { transform: scale(1.08) rotate(-8deg); }
.sky-fab span {
  position: absolute; right: calc(100% + 10px);
  background: var(--ink); color: #fff; font-size: 12px; font-weight: 600;
  padding: 6px 10px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transform: translateX(8px);
  transition: .2s ease;
}
.sky-fab:hover span, .sky-fab:focus-visible span { opacity: 1; transform: none; }
@keyframes fabRing {
  0% { opacity: .55; transform: scale(.9); }
  100% { opacity: 0; transform: scale(1.45); }
}
.sky-fab.call { background: var(--sky); }
.sky-fab.mail { background: var(--gold); color: var(--navy); }
.sky-fab.wa { background: #25d366; }
.sky-fab.chat { background: var(--navy-2); }
.sky-fab.chat.is-on { background: var(--sky); color: #fff; }
.sky-chat {
  width: 320px; background: #fff; color: var(--ink);
  border-radius: 18px; border: 1px solid var(--line);
  box-shadow: var(--shadow); overflow: hidden; display: none;
}
.sky-chat.is-open { display: block; }
.sky-chat-h {
  background: var(--navy); color: #fff; padding: 14px 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
}
.sky-chat-h b { display: block; font-size: 14px; }
.sky-chat-h small { color: rgba(255,255,255,.7); font-size: 12px; }
.sky-chat-h button {
  width: 32px; height: 32px; border: 0; border-radius: 8px;
  background: rgba(255,255,255,.12); color: #fff; cursor: pointer;
}
.sky-chat form { display: grid; gap: 8px; padding: 14px; }
.sky-chat input, .sky-chat textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px;
}
.sky-chat textarea { min-height: 80px; }
.sky-chat .note { font-size: 12px; color: var(--muted); margin: 0; }
.contact-icons {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 8px;
}
.contact-icons a {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 42px; padding: 0 14px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; font-size: 14px; font-weight: 600;
}
.contact-icons a svg { width: 18px; height: 18px; }
.contact-icons .i-call { color: var(--sky); }
.contact-icons .i-mail { color: var(--gold); }
.contact-icons .i-wa { color: #128c7e; }
.contact-icons .i-chat { color: var(--navy-2); }

@media (max-width: 680px) {
  .sky-dock {
    right: 0; left: 0; bottom: 0;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 0;
    padding: 8px 6px calc(8px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(0, 12, 60, 0.08);
  }
  .sky-fab { width: 46px; height: 46px; box-shadow: none; }
  .sky-fab span { display: none; }
  .sky-chat {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 12px;
    right: 12px;
    width: auto;
  }
  .contact-icons a { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

/* Engineering page — PPT deck layout, premium */
.eng-deck {
  --eng-cream: #f7f3ee;
  --eng-cream-2: #f3ece4;
  --eng-brown: #4a322c;
  --eng-brown-2: #3d2a24;
  --eng-ink: #4d4540;
  --eng-peach: #f6dcc6;
  --eng-peach-2: #fde8d4;
  --eng-tan: #c4a07a;
  --eng-orange: #e87731;
  --eng-card: #ffffff;
  --eng-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  background: var(--eng-cream);
  color: var(--eng-ink);
}
.eng-slide h2, .eng-slide h3 { font-family: var(--eng-serif); color: var(--eng-brown); letter-spacing: -0.02em; }
.eng-slide h2 { font-size: clamp(34px, 4.2vw, 52px); font-weight: 600; }
.eng-slide h3 { font-size: 22px; font-weight: 600; }
.eng-slide .lede, .eng-slide p, .eng-note { color: var(--eng-ink); }
.eng-intro {
  background: var(--eng-cream);
  padding: 28px 0 8px;
}
.eng-intro .crumbs { color: rgba(74, 50, 44, .55); }
.eng-intro .crumbs a { color: var(--eng-brown); }
.eng-intro .eyebrow { color: var(--eng-orange); }
.eng-slide { padding: 56px 0 72px; scroll-margin-top: calc(var(--header-h) + 8px); }
.eng-slide.full { padding: 0; }
.eng-slide.alt { background: var(--eng-cream-2); }
.eng-copy { max-width: 62ch; }
.eng-copy .lede { margin: 16px 0 0; font-size: 17px; line-height: 1.7; }
.eng-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0;
  min-height: 620px;
  align-items: stretch;
  overflow: hidden;
  border-radius: 0;
}
.eng-split.reverse { grid-template-columns: 0.92fr 1.08fr; }
.eng-media {
  min-height: 520px;
  background: #cfc6bb center/cover no-repeat;
}
.eng-split .eng-media {
  clip-path: ellipse(92% 88% at 8% 50%);
}
.eng-split.reverse .eng-media {
  clip-path: ellipse(92% 88% at 92% 50%);
}
.eng-pane {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(24px, 5vw, 72px);
  max-width: 720px;
  width: 100%;
  justify-self: center;
}
.eng-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.eng-card {
  background: var(--eng-card);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 30px rgba(74, 50, 44, 0.06);
  border: 1px solid rgba(74, 50, 44, 0.06);
}
.eng-card.span { grid-column: 1 / -1; }
.eng-card b { display: block; font-family: var(--eng-serif); color: var(--eng-brown); font-size: 18px; margin-bottom: 8px; }
.eng-card ul { margin: 0; padding: 0 0 0 16px; color: var(--eng-ink); font-size: 14.5px; }
.eng-card li { margin: 4px 0; }
.eng-card p { margin: 0; font-size: 14.5px; line-height: 1.55; }
.eng-waste-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  margin-top: 36px;
}
.eng-waste article h3 { margin: 8px 0 8px; font-size: 24px; }
.eng-waste article p { margin: 0; font-size: 15.5px; line-height: 1.6; max-width: 46ch; }
.eng-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 30px;
  padding: 0 14px 0 10px;
  background: var(--eng-peach);
  color: var(--eng-brown);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  clip-path: polygon(0 0, 78% 0, 100% 50%, 78% 100%, 0 100%);
}
.eng-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 36px;
  background: var(--eng-peach-2);
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 15.5px;
  line-height: 1.6;
}
.eng-callout .eng-mask { flex: 0 0 28px; width: 28px; height: 28px; background: var(--eng-brown); margin-top: 2px; }
.eng-housing {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(74, 50, 44, 0.1);
}
.eng-housing-panel {
  background: var(--eng-brown-2);
  color: #fff;
  padding: 40px 32px;
}
.eng-housing-panel h2 { color: #fff; margin: 0; }
.eng-housing-visual {
  height: 340px;
  background: #cfc6bb center/cover no-repeat;
}
.eng-housing-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: #fff;
  padding: 28px 28px 32px;
}
.eng-housing-cols p { margin: 8px 0 0; font-size: 15px; }
.eng-note { margin: 22px 0 0; font-size: 15px; line-height: 1.7; max-width: 1100px; }
.eng-drain-list { display: grid; gap: 28px; margin-top: 32px; }
.eng-drain-item { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; }
.eng-drain-item h3 { margin: 0 0 6px; font-size: 22px; }
.eng-drain-item p { margin: 0; font-size: 15.5px; line-height: 1.65; }
.eng-life-ico img {
  width: 28px; height: 28px;
  filter: brightness(0) invert(1);
}
.eng-drain-item img, .eng-callout img {
  width: 48px; height: 48px;
  filter: invert(32%) sepia(18%) saturate(700%) hue-rotate(345deg) brightness(90%);
}
.eng-callout img { width: 28px; height: 28px; flex: 0 0 28px; }
.eng-timeline-wrap { position: relative; margin: 48px 0 28px; padding: 8px 0 16px; }
.eng-timeline-wrap::before {
  content: "";
  position: absolute;
  left: 6%; right: 6%;
  top: 50%;
  height: 2px;
  background: #e4d0bd;
}
.eng-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.eng-tl { text-align: left; }
.eng-tl:nth-child(odd) { padding-bottom: 72px; }
.eng-tl:nth-child(even) { padding-top: 72px; }
.eng-tl em {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 28px;
  background: var(--eng-peach);
  color: var(--eng-brown);
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
  border-radius: 4px;
}
.eng-tl h3 { font-size: 20px; margin-bottom: 8px; }
.eng-tl p { margin: 0; font-size: 14.5px; line-height: 1.55; }
.eng-life {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.eng-life a, .eng-life article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(74, 50, 44, 0.06);
  box-shadow: 0 10px 28px rgba(74, 50, 44, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.eng-life a:hover, .eng-life article:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(74, 50, 44, 0.1);
}
.eng-life-ico {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--eng-orange);
  display: grid; place-items: center;
}
.eng-life-ico .eng-mask { width: 28px; height: 28px; background: #fff; }
.eng-life strong { display: block; font-family: var(--eng-serif); color: var(--eng-brown); font-size: 20px; margin: 0 0 4px; font-weight: 600; }
.eng-life p { margin: 0; font-size: 14.5px; }
.eng-cta { padding: 8px 0 88px; }

@media (max-width: 980px) {
  .eng-split, .eng-split.reverse, .eng-housing { grid-template-columns: 1fr; min-height: 0; }
  .eng-split .eng-media, .eng-split.reverse .eng-media { clip-path: none; min-height: 320px; border-radius: 0 0 28% 28% / 0 0 18% 18%; }
  .eng-pane { padding: 32px 24px 48px; max-width: none; justify-self: stretch; }
  .eng-housing-panel { min-height: 120px; }
  .eng-timeline { grid-template-columns: 1fr 1fr; }
  .eng-tl:nth-child(odd), .eng-tl:nth-child(even) { padding: 0 0 24px; }
  .eng-timeline-wrap::before { display: none; }
}
@media (max-width: 680px) {
  .eng-cards, .eng-waste-grid, .eng-housing-cols, .eng-life, .eng-timeline { grid-template-columns: 1fr; }
  .eng-slide { padding: 40px 0 48px; }
  .eng-pane { padding-top: 24px; }
}

/* Real Estate Advisory — PPT deck */
.rea-deck { --eng-orange: #c58b58; --eng-brown: #4a2a22; --eng-brown-2: #4a2a22; }
.rea-tag {
  display: inline-block;
  background: #f3d7c0;
  color: #4a2a22;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 6px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.rea-hi { color: var(--eng-orange); font-style: normal; font-weight: 700; }
.rea-mid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
  margin-top: 36px;
}
.rea-box {
  background: var(--eng-brown-2);
  color: #fff;
  border-radius: 8px;
  padding: 28px 28px 24px;
}
.rea-box h3 { color: #fff; margin: 0 0 16px; font-size: 26px; }
.rea-box ul { margin: 0; padding: 0 0 0 18px; }
.rea-box li { margin: 8px 0; color: rgba(255,255,255,.92); font-size: 16px; }
.rea-caps h3 { margin: 0 0 12px; }
.rea-caps p { margin: 0; font-size: 16.5px; line-height: 1.7; }
.rea-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.rea-four article {
  background: #fff;
  border: 1px solid rgba(74, 42, 34, 0.08);
  border-radius: 14px;
  padding: 20px 18px 18px;
  box-shadow: 0 10px 28px rgba(74, 42, 34, 0.05);
}
.rea-four h3 { font-size: 18px; margin: 0 0 8px; }
.rea-four p { margin: 0; font-size: 14.5px; line-height: 1.5; }
.rea-models {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  margin-top: 40px;
}
.rea-models article h3 { font-size: 20px; margin: 10px 0 8px; }
.rea-models article p { margin: 0 0 16px; font-size: 14.5px; line-height: 1.55; min-height: 4.6em; }
.rea-models img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.rea-ph {
  height: 220px;
  border-radius: 10px;
  background: #e3f0f8;
}
.rea-ico {
  width: 28px; height: 28px;
  color: var(--eng-orange);
}
.rea-ico img { width: 28px; height: 28px; filter: invert(48%) sepia(28%) saturate(700%) hue-rotate(346deg) brightness(95%); }

@media (max-width: 980px) {
  .rea-mid { grid-template-columns: 1fr; }
  .rea-four { grid-template-columns: 1fr 1fr; }
  .rea-models { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .rea-mid, .rea-four, .rea-models { grid-template-columns: 1fr; }
}

/* Geospatial — PPT deck */
.geo-deck { --eng-orange: #e8833a; --eng-brown: #4a322c; }
.geo-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
}
.geo-split.flip { grid-template-columns: 1.05fr 1fr; }
.geo-split img, .geo-visual {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.geo-pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.geo-pill {
  border: 1px solid #e8b48a;
  color: var(--eng-brown);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.geo-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.geo-3 article, .geo-svc article {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid rgba(74, 50, 44, 0.08);
  box-shadow: 0 10px 28px rgba(74, 50, 44, 0.05);
}
.geo-3 h3, .geo-svc h3 { margin: 0 0 8px; font-size: 22px; }
.geo-3 p, .geo-svc p { margin: 0; font-size: 15px; line-height: 1.55; }
.geo-svc { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.geo-svc article.span { grid-column: 1 / -1; }
.geo-list { margin: 18px 0 0; padding: 0 0 0 18px; }
.geo-list li { margin: 8px 0; font-size: 15.5px; line-height: 1.55; }
.geo-list b { color: var(--eng-brown); }
.geo-dark {
  background: #2f323a;
  color: #fff;
  border-radius: 16px;
  padding: 28px 26px;
}
.geo-dark h3 { color: #fff; margin: 0 0 14px; }
.geo-dark li { color: rgba(255,255,255,.9); margin: 8px 0; }
.geo-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.geo-thumbs img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; }
.geo-divider {
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
}
.geo-divider h2 { font-size: clamp(40px, 6vw, 64px); }
.geo-arrow { color: var(--eng-orange); font-weight: 700; margin-right: 8px; }
.geo-stat { font-size: 20px; font-weight: 700; color: var(--eng-brown); margin: 12px 0 18px; }
.geo-why {
  background: #3a3f48;
  color: #fff;
  border-radius: 16px;
  padding: 24px;
}
.geo-why h3 { color: #fff; }
.geo-drushti {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}
.geo-drushti-card {
  background: #3a3f48;
  color: #fff;
  border-radius: 18px;
  padding: 28px 24px;
}
.geo-drushti-card p { color: rgba(255,255,255,.92); }
.geo-drushti-card a { color: #f0c27a; }

@media (max-width: 980px) {
  .geo-split, .geo-split.flip, .geo-3, .geo-svc, .geo-drushti { grid-template-columns: 1fr; }
  .geo-thumbs { grid-template-columns: 1fr 1fr; }
  #glance .geo-3 { grid-template-columns: 1fr 1fr; }
  .proj-story { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .geo-thumbs { grid-template-columns: 1fr 1fr; }
  .eng-slide h2, .plan-deck .eng-pane h2, .plan-prose h2 { font-size: 26px; line-height: 1.2; }
  .eng-slide h3, .geo-3 h3, .geo-svc h3 { font-size: 18px; }
  .plan-prose p { font-size: 15.5px; }
  .geo-dark, .geo-why, .geo-drushti-card { padding: 20px 16px; }
  .geo-list li, .plan-list li { font-size: 14.5px; }
  .geo-pill { font-size: 11px; padding: 6px 10px; }
  .eng-cta { padding-bottom: 28px; }
  .crumbs { overflow-wrap: anywhere; }
}

/* Urban Planning — PPT deck */
.plan-deck .eng-split { grid-template-columns: 0.82fr 1.18fr; min-height: 680px; }
.plan-deck .eng-split.reverse { grid-template-columns: 1.18fr 0.82fr; }
.plan-deck .eng-pane { max-width: 760px; padding: 48px clamp(28px, 4.5vw, 64px); }
.plan-deck .eng-pane h2 { font-size: clamp(32px, 3.6vw, 46px); }
.plan-deck .eng-pane .lede { margin: 18px 0 0; font-size: 16px; line-height: 1.7; }
.plan-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.plan-list li {
  position: relative;
  padding-left: 18px;
  margin: 12px 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--eng-ink);
}
.plan-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--eng-brown);
  font-weight: 600;
}
.plan-prose { max-width: 980px; padding: 24px 0 8px; }
.plan-prose h2 { margin-bottom: 22px; }
.plan-prose p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.75;
  max-width: 72ch;
}

@media (max-width: 980px) {
  .plan-deck .eng-split, .plan-deck .eng-split.reverse { grid-template-columns: 1fr; min-height: 0; }
  .plan-deck .eng-pane { padding: 28px 20px 40px; max-width: none; }
  .plan-deck .eng-pane h2, .plan-prose h2, .eng-slide h2 { font-size: clamp(26px, 7vw, 36px); }
  .eng-pane { padding: 28px 20px 40px; max-width: none; }
}

@media (max-width: 680px) {
  .plan-deck .eng-pane h2, .plan-prose h2, .eng-slide h2 { font-size: 26px; line-height: 1.2; }
  .plan-deck .eng-media, .eng-split .eng-media { min-height: 240px; }
  .plan-prose { padding: 8px 0; }
}

