/* 3DGS live site. Design 2 chassis: archive density, white/cool-gray ground. */

:root {
  --ink: #0B1116;
  --cyanotype: #14324F;
  --cyanotype-hover: #0E243A;
  --linen: #F4F5F4;
  --vellum: #FFFFFF;
  --brass: #7D5F2D;
  --brass-warm: #8B6B33;
  --brass-screen: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Ccircle cx='2' cy='2' r='0.95' fill='%238B6B33'/%3E%3Ccircle cx='6' cy='6' r='0.95' fill='%238B6B33'/%3E%3C/svg%3E");
  --cloud-tone: saturate(0.58) contrast(0.9) brightness(1.02);
  --graphite: #616A73;
  --ground: #F4F5F4;
  --ground-cool: #EEF0F2;
  --ground-white: #FFFFFF;
  --border: #D0D4D8;
  --border-light: #E2E4E8;
  --font-serif: "Source Serif 4", "Source Serif Pro", "Iowan Old Style", Georgia, serif;
  --font-sans: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  --measure: 1120px;
  --measure-narrow: 720px;
  --pad: clamp(20px, 4vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--graphite);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}
button, input, select, textarea { border-radius: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyanotype); }
a:hover { color: var(--ink); }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin: 0 0 0.6em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin: 0 0 0.5em; }
h3 { font-size: 1.2rem; margin: 0 0 0.4em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: var(--pad);
  top: 8px;
  z-index: 80;
  background: var(--ground-white);
  color: var(--ink);
  padding: 8px 12px;
  border: 1px solid var(--border);
}

.container { width: min(var(--measure), calc(100% - var(--pad) * 2)); margin: 0 auto; }
.container--narrow { width: min(var(--measure-narrow), calc(100% - var(--pad) * 2)); }
.lead { font-size: 1.08rem; max-width: 40rem; }
.eyebrow, .hero__kicker, .stat__label, .spec-rail__k, .principle__label, .project__meta, .faq__q, .chip, .back-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.eyebrow {
  color: var(--brass);
  margin-bottom: 8px;
  font-weight: 600;
}
.spacer-32 { height: 32px; }
.spacer-48 { height: 48px; }

.status-strip {
  background: var(--ground-cool);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--graphite);
}
.status-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  gap: 16px;
}
.status-strip__left,
.status-strip__right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.status-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-right: 1px solid var(--border);
}
.status-strip__left span:first-child { padding-left: 0; }
.status-strip__right span:last-child { border-right: 0; padding-right: 0; }
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--brass);
  display: inline-block;
  flex-shrink: 0;
}
.specs-strip {
  background: var(--ground-white);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--graphite);
}
.specs-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
  gap: 16px;
  flex-wrap: wrap;
  padding: 6px 0;
}
.specs-strip__left { display: flex; flex-wrap: wrap; gap: 18px; }
.specs-strip .plus { color: var(--brass); font-weight: 700; margin-right: 4px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ground-white);
  border-bottom: 1px solid var(--border);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
}
.brand__logo { width: 28px; height: 28px; }
.brand__meta {
  border-left: 1px solid var(--border);
  padding-left: 12px;
  display: none;
}
.brand__meta .stamp {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 600;
}
.nav { display: flex; align-items: center; gap: 4px; height: 64px; }
.nav a {
  color: var(--graphite);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  height: 64px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
  border-bottom-color: var(--cyanotype);
}
.nav__cta,
.mobile-nav-drawer__cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 0;
}
.nav__cta {
  background: var(--cyanotype);
  color: var(--ground-white) !important;
  padding: 8px 14px;
  height: auto;
  border-bottom: 0 !important;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 8px;
}
.nav__cta:hover { background: var(--cyanotype-hover); color: var(--ground-white) !important; }
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--ground-cool);
  padding: 10px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  margin: 6px 0;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 17, 22, 0.4);
  z-index: 50;
}
.mobile-nav-overlay.is-visible { display: block; }
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 92vw);
  height: 100%;
  background: var(--ground-white);
  border-left: 1px solid var(--border);
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.2s ease;
  padding: 20px;
}
.mobile-nav-drawer.is-open { transform: translateX(0); }
.mobile-nav-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.mobile-nav-drawer__title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}
.mobile-nav-drawer__close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--ground-cool);
}
.mobile-nav-drawer__close svg { width: 22px; height: 22px; }
.mobile-nav-drawer__nav { display: flex; flex-direction: column; gap: 18px; }
.mobile-nav-drawer__nav a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav-drawer__cta {
  background: var(--cyanotype);
  color: var(--ground-white) !important;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  margin-top: 16px;
  border-bottom: 0 !important;
}

.hero { padding: 72px 0 56px; }
.hero__sub { max-width: 40rem; font-size: 1.08rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px 20px; align-items: center; margin-top: 28px; }
.btn { padding: 11px 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.btn--primary { background: var(--cyanotype); color: var(--ground-white); border-color: var(--cyanotype); }
.btn--primary:hover { background: var(--cyanotype-hover); color: var(--ground-white); border-color: var(--cyanotype-hover); }
.btn--ghost { border-color: var(--border); color: var(--ink); background: var(--ground-white); }
.btn--ghost:hover { background: var(--ground-cool); color: var(--ink); }
.btn--link {
  color: var(--cyanotype);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn--link i, .btn i { width: 16px; height: 16px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brass);
  text-decoration: none;
  margin-bottom: 18px;
}
.back-link i { width: 14px; height: 14px; }

.section { padding: 56px 0; }
.section--ink { background: var(--cyanotype); color: #C8CDD2; }
.section--ink h2, .section--ink h3, .section--ink .eyebrow { color: var(--ground-white); }
.section--ink p { color: #C8CDD2; }
.section--surface { background: var(--ground-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--cyanotype { background: var(--cyanotype); color: #D5DCE3; }
.section--cyanotype h2, .section--cyanotype .eyebrow { color: var(--linen); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--ground-white);
}
.stat {
  padding: 14px 16px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 92px;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-mono);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  margin: 8px 0 4px;
}
.stat__label { color: var(--graphite); text-transform: none; letter-spacing: 0; font-size: 11px; font-weight: 400; }

.principle {
  position: relative;
  z-index: 0;
  isolation: isolate;
  border-top: 1px solid var(--brass);
  padding: 18px 16px 16px;
  max-width: 40rem;
}
.principle::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--brass-screen);
  background-repeat: repeat;
  opacity: 0.1;
  pointer-events: none;
}
.principle__line {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  color: var(--ink);
  line-height: 1.35;
  margin: 0;
}

.pair-bleed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.pair-bleed figure {
  margin: 0;
  background: var(--ink);
}
.pair-bleed img {
  width: 100%;
  height: min(62vh, 560px);
  object-fit: cover;
}
.pair-bleed figcaption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--brass);
  padding: 10px 14px 16px;
  background: var(--linen);
}

.log {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: none;
  border: 1px solid var(--border);
  background: var(--ground-white);
}
.log__entry {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 20px 28px;
  padding: 18px 20px;
  border-top: 0;
  border-bottom: 1px solid var(--border-light);
}
.log__entry:last-child { border-bottom: 0; }
.log__when {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--graphite);
  margin: 0;
}
.log__body { margin: 0; }
.log__body a { color: var(--cyanotype); }

.pillar-stage { padding: 0 0 72px; }
.pillar-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pillar-plate {
  position: relative;
  display: block;
  min-height: 280px;
  overflow: hidden;
  color: var(--linen);
  text-decoration: none;
  background: var(--cyanotype);
}
.pillar-plate img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: var(--cloud-tone);
}
img[src*="point-cloud" i],
img[src*="web-view-services"],
img[src*="adani-mining-terrain"],
img[src*="adani-mining-point"] {
  filter: var(--cloud-tone);
}
.pillar-plate__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(transparent, rgba(11, 17, 22, 0.82));
}
.pillar-plate__idx {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #D8C39A;
  margin: 0 0 4px;
}
.pillar-plate__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--linen);
  margin: 0;
}

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: 1fr 1fr; }
.grid--3 { grid-template-columns: 1fr 1fr 1fr; }

.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.project {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--vellum);
}
.project__img { overflow: hidden; background: var(--cyanotype); }
.project__img img { width: 100%; height: 200px; object-fit: cover; }
.project__body { padding: 14px 16px 18px; }
.project__name {
  font-family: var(--font-serif);
  color: var(--ink);
  margin: 0 0 4px;
  font-size: 1.05rem;
}
.project__meta { color: var(--graphite); text-transform: none; letter-spacing: 0.02em; margin: 0; }

.process { display: grid; gap: 28px; }
.process__item { display: grid; grid-template-columns: 28px 1fr; gap: 16px; }
.process__icon { width: 22px; height: 22px; color: var(--brass); }
.process__body h3 { margin-bottom: 6px; }

.faq__item {
  padding: 18px 0;
  border-top: 1px solid rgba(11, 17, 22, 0.1);
}
.faq__q { color: var(--ink); margin: 0 0 8px; text-transform: none; letter-spacing: 0.02em; font-size: 0.95rem; }
.faq__a { margin: 0; }

.spec-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}
.spec {
  border: 1px solid rgba(125, 95, 45, 0.35);
  background: var(--vellum);
  padding: 10px 12px;
  min-width: 140px;
}
.spec__k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 4px;
}
.spec__v {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  margin: 0;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 28px 0 0; }
.chip {
  border: 1px solid rgba(11, 17, 22, 0.12);
  padding: 6px 10px;
  color: var(--ink);
  background: var(--vellum);
}

.hero-banner {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink) center/cover no-repeat;
  color: var(--linen);
}
.hero-banner__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 17, 22, 0.88) 0%, rgba(11, 17, 22, 0.55) 48%, rgba(11, 17, 22, 0.22) 100%);
}
.hero-banner .container { position: relative; z-index: 1; padding: 80px 0 56px; }
.hero-banner h1, .hero-banner .hero__kicker, .hero-banner .back-link { color: var(--linen); }
.hero-banner .hero__sub { color: #E4E0D6; }
.hero-banner .btn--ghost { border-color: var(--linen); color: var(--linen); background: transparent; }
.hero-banner .btn--ghost:hover { background: rgba(250, 248, 244, 0.12); color: var(--linen); }

.bleed-copy {
  position: relative;
  min-height: 78vh;
  background: var(--ink) center/cover no-repeat;
  color: var(--linen);
}
.bleed-copy__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 17, 22, 0.84) 0%, rgba(11, 17, 22, 0.78) 100%);
}
.bleed-copy .container { position: relative; z-index: 1; padding: 88px 0; }
.bleed-copy h1, .bleed-copy .hero__kicker, .bleed-copy .back-link { color: var(--linen); }
.bleed-copy .hero__sub { color: #E4E0D6; max-width: 36rem; }
.bleed-copy .btn--ghost { border-color: var(--linen); color: var(--linen); background: transparent; }
.bleed-copy .btn--ghost:hover { background: rgba(250, 248, 244, 0.12); color: var(--linen); }
.bleed-copy .spec { background: rgba(250, 248, 244, 0.92); }

.instrument { padding: 64px 0 24px; }
.instrument__frame {
  border: 1px solid rgba(125, 95, 45, 0.4);
  background: var(--ink);
}
.instrument__frame img { width: 100%; height: min(72vh, 640px); object-fit: cover; }
.instrument__caption {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brass);
  padding: 10px 12px;
  background: var(--vellum);
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 56vh;
}
.compare__pane { position: relative; min-height: 360px; overflow: hidden; background: var(--cyanotype); }
.compare__pane img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.compare__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--vellum);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 8px;
}

.portrait-moment {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  gap: 0;
  min-height: 80vh;
  background: var(--ink);
}
.portrait-moment img {
  width: 100%;
  height: 100%;
  min-height: 80vh;
  object-fit: cover;
}
.portrait-moment__copy {
  padding: clamp(32px, 6vw, 72px);
  color: #C8CDD2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.portrait-moment__copy h1,
.portrait-moment__copy .hero__kicker,
.portrait-moment__copy .back-link { color: var(--linen); }
.portrait-moment__copy .hero__sub { color: #D5D0C6; }
.portrait-moment .btn--ghost { border-color: var(--linen); color: var(--linen); background: transparent; }
.portrait-moment .btn--ghost:hover { background: rgba(250, 248, 244, 0.12); color: var(--linen); }

.split-maps {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-maps img { width: 100%; height: 420px; object-fit: cover; }
.split-maps figcaption {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 10px 12px;
  color: var(--brass);
  background: var(--vellum);
}

.field-band {
  min-height: 420px;
  background: var(--ink) left bottom/cover no-repeat;
  position: relative;
}
.field-band--crew {
  background-position: 26% 58%;
  background-size: cover;
}
.field-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(11, 17, 22, 0.45));
}

.endcap {
  background: var(--cyanotype);
  color: #D5DCE3;
  padding: 80px 0;
}
.endcap h2, .endcap .eyebrow { color: var(--linen); }
.endcap .btn--ghost { border-color: var(--linen); color: var(--linen); background: transparent; }
.endcap .btn--ghost:hover { background: rgba(250, 248, 244, 0.12); color: var(--linen); }

.footer {
  background: var(--ground-white);
  color: var(--graphite);
  padding: 40px 0 24px;
  font-size: 0.9rem;
  border-top: 2px solid var(--ink);
}
.footer a { color: var(--ink); text-decoration: none; }
.footer a:hover { color: var(--cyanotype); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.footer__brand {
  border-left: 2px solid var(--cyanotype);
  padding-left: 16px;
}
.footer__brand h4 { font-size: 1.4rem; margin: 4px 0 8px; }
.footer__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.footer__list { list-style: none; margin: 0; padding: 0; font-family: var(--font-mono); font-size: 12px; }
.footer__list li { margin: 0 0 8px; }
.footer__list a::before { content: "— "; color: var(--graphite); }
.footer__bench { font-family: var(--font-mono); font-size: 12px; }
.footer__bench div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.footer__bench div:last-child { border-bottom: 0; }
.footer__bench span:first-child { color: var(--graphite); }
.footer__bench span:last-child { color: var(--ink); font-weight: 600; }
.footer__row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px 20px; }
.footer__sitemap { display: flex; flex-wrap: wrap; gap: 8px 18px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer__stamp {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--graphite);
}

.sticky-cta {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  background: var(--cyanotype);
  color: var(--ground-white);
  text-decoration: none;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--cyanotype);
}
.sticky-cta.is-visible { display: inline-flex; }
.sticky-cta i { width: 14px; height: 14px; }

.form-note { font-size: 0.95rem; }
.hs-form, .contact-card, .contact-form-card { background: var(--ground-white); padding: 24px; border: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: start; }
.contact-list { list-style: none; margin: 0 0 20px; padding: 0; }
.contact-list li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.contact-list__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
  margin: 0 0 4px;
}

.card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--ground-white);
  padding: 22px;
  border: 1px solid var(--border);
}
.card h3 { margin-top: 8px; }
.card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
}
.card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyanotype);
}
.card__icon { width: 22px; height: 22px; color: var(--brass); }

.work-projects { display: grid; gap: 48px; }
.work-project {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--ground-white);
  padding: 20px;
}
.work-project--reverse { direction: rtl; }
.work-project--reverse > * { direction: ltr; }
.work-project__img { min-width: 0; }
.work-project__img > img { width: 100%; height: 320px; object-fit: cover; }
.work-project__strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-top: 8px;
  padding-bottom: 2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.work-project__strip-thumb {
  flex: 0 0 calc(33.333% - 6px);
  min-width: 96px;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--cyanotype);
  cursor: pointer;
  scroll-snap-align: start;
}
.work-project__strip-thumb:hover { border-color: var(--cyanotype); }
.work-project__strip-thumb img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  display: block;
}
.work-project__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--graphite);
  margin-bottom: 12px;
}
.work-project__deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.work-project__deliverables li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(11, 17, 22, 0.12);
  padding: 5px 8px;
}
.work-project__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.work-project__cta, .work-project__gallery-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: none;
  border: 0;
  color: var(--cyanotype);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lightbox {
  border: none;
  padding: 0;
  width: 92vw;
  max-width: 1200px;
  max-height: 92vh;
  background: var(--vellum);
  overflow: hidden;
  color: var(--graphite);
}
.lightbox::backdrop { background: rgba(11, 17, 22, 0.88); }
.lightbox__inner { display: grid; grid-template-rows: auto 1fr auto; max-height: 92vh; }
.lightbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(11, 17, 22, 0.08);
}
.lightbox__title { font-family: var(--font-serif); font-size: 1.2rem; color: var(--ink); margin: 0; }
.lightbox__counter { font-family: var(--font-mono); font-size: 12px; color: var(--graphite); }
.lightbox__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 8px;
}
.lightbox__close svg { width: 20px; height: 20px; }
.lightbox__body {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  position: relative;
}
.lightbox__image { max-width: 100%; max-height: 65vh; object-fit: contain; }
.lightbox__caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(11, 17, 22, 0.75);
  color: var(--linen);
  font-size: 13px;
  padding: 8px 14px;
}
.lightbox__caption:empty { display: none; }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--vellum);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 0;
  cursor: pointer;
  color: var(--ink);
}
.lightbox__nav:disabled { opacity: 0.25; }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }
.lightbox__thumbs {
  display: flex;
  gap: 8px;
  padding: 14px 22px;
  overflow-x: auto;
  justify-content: center;
}
.lightbox__thumb {
  width: 64px;
  height: 48px;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: var(--linen);
}
.lightbox__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lightbox__thumb.is-active { border-color: var(--brass); }

@media (min-width: 640px) {
  .brand__meta { display: block; }
}
@media (max-width: 980px) {
  .nav { display: none; }
  .hamburger { display: block; }
  .stats, .pillar-track, .grid--3, .projects, .compare, .split-maps, .portrait-moment, .pair-bleed,
  .registry, .proof, .stage-grid, .milestone-grid, .footer__grid, .hero-split, .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .status-strip .hide-md { display: none; }
}
@media (max-width: 700px) {
  .stats, .pillar-track, .grid--2, .grid--3, .projects, .compare, .split-maps, .portrait-moment,
  .work-project, .work-project--reverse, .pair-bleed, .log__entry, .registry, .proof, .stage-grid,
  .milestone-grid, .footer__grid, .hero-split, .contact-grid {
    grid-template-columns: 1fr;
  }
  .stat, .proof__cell { border-right: 0; border-bottom: 1px solid var(--border); }
  .stat:last-child, .proof__cell:last-child { border-bottom: 0; }
  .portrait-moment img { min-height: 48vh; }
  .hero, .section, .endcap { padding-top: 40px; padding-bottom: 40px; }
  .status-strip .hide-sm { display: none; }
  .field-band--crew {
    background-position: 22% 60%;
    min-height: 360px;
  }
}

/* --- Design 2 ledger components --- */
.proof {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  background: var(--ground-white);
}
.proof__cell {
  padding: 14px 16px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.proof__cell:last-child { border-right: 0; background: rgba(238, 240, 242, 0.5); }
.proof__k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.proof__v {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.proof__n { font-family: var(--font-mono); font-size: 11px; color: var(--graphite); }

.panel {
  background: var(--ground-white);
  border: 1px solid var(--border);
  padding: 24px 28px;
}
.panel--flush { padding: 0; }
.panel-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
  margin-bottom: 20px;
}
.folio { padding: 28px 0 48px; }
.folio > .panel + .panel { margin-top: 24px; }

.ledger-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  background: var(--ground-white);
}
.ledger-table { width: 100%; text-align: left; font-size: 13px; }
.ledger-table caption {
  caption-side: top;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--graphite);
  padding: 10px 12px 8px;
}
.ledger-table thead { background: var(--ground-cool); }
.ledger-table th {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border-light);
  white-space: nowrap;
}
.ledger-table th:last-child { border-right: 0; }
.ledger-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  vertical-align: top;
}
.ledger-table td:last-child { border-right: 0; }
.ledger-table tbody tr:nth-child(even) { background: rgba(238, 240, 242, 0.45); }
.ledger-table tbody tr:hover { background: var(--ground-cool); }
.ledger-table a { color: var(--ink); text-decoration: none; font-family: var(--font-serif); font-weight: 600; }
.ledger-table a:hover { color: var(--cyanotype); }
.ledger-table--nav tbody tr {
  position: relative;
  cursor: pointer;
}
.ledger-table--nav tbody tr:hover { background: var(--ground-cool); }
.ledger-table--nav tbody tr td:first-child a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.ledger-table .mono { font-family: var(--font-mono); font-size: 12px; color: var(--graphite); }
.ledger-table .num { font-family: var(--font-mono); font-weight: 600; color: var(--ink); text-align: right; white-space: nowrap; }

.spec-dl {
  margin: 0;
  border: 1px solid var(--border);
  background: var(--ground-white);
}
.spec-dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-mono);
  font-size: 12px;
}
.spec-dl div:last-child { border-bottom: 0; }
.spec-dl dt { color: var(--graphite); }
.spec-dl dd { margin: 0; color: var(--ink); font-weight: 600; text-align: right; }

.registry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.registry-card {
  border: 1px solid var(--border);
  background: var(--ground-white);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.registry-card:hover { border-color: var(--cyanotype); }
.registry-card__img {
  margin: -14px -16px 12px;
  overflow: hidden;
  background: var(--cyanotype);
}
.registry-card__img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.registry-card__ref {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--graphite);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 10px;
}
.registry-card__ref strong { color: var(--cyanotype); font-weight: 600; }
.registry-card h3 { font-size: 1.1rem; margin: 0 0 6px; }
.registry-card p { font-size: 13px; color: var(--graphite); flex: 1; }
.registry-card__foot {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--graphite);
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-top: 12px;
}

.plate {
  border: 1px solid var(--border);
  background: var(--ground-white);
  padding: 10px;
  position: relative;
}
.plate__marks {
  position: absolute;
  inset: 4px;
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--brass);
}
.plate__marks span { position: absolute; }
.plate__marks .tl { top: 0; left: 0; }
.plate__marks .tr { top: 0; right: 0; }
.plate__marks .bl { bottom: 0; left: 0; }
.plate__marks .br { bottom: 0; right: 0; }
.plate img { width: 100%; border: 1px solid var(--border); }
.plate__cap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--graphite);
  padding: 8px 4px 2px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.plate__cap strong { color: var(--ink); }

.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stage-card {
  border: 1px solid var(--border);
  background: var(--ground-white);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
}
.stage-card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
  margin-bottom: 10px;
}
.stage-card__n {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--cyanotype);
  font-weight: 600;
}
.stage-card__k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
}
.stage-card p { font-size: 13px; flex: 1; }
.stage-card__foot {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--graphite);
  border-top: 1px solid var(--border-light);
  padding-top: 10px;
  margin-top: 12px;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.milestone {
  border: 1px solid var(--border);
  background: var(--ground-white);
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.milestone__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--ground-cool);
  border: 1px solid var(--border);
  padding: 6px 10px;
  margin-bottom: 12px;
}
.milestone__year {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.milestone__epoch {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}
.milestone p { font-size: 13px; flex: 1; }
.milestone__foot {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--graphite);
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-top: 12px;
}

.folio-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--ground-cool);
  border: 1px solid var(--border);
  padding: 10px 14px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--graphite);
}

.compare--copy {
  min-height: 0;
  gap: 0;
  border: 0;
}
.compare--copy .compare__pane {
  min-height: 0;
  background: var(--ground-white);
  border: 1px solid var(--border);
  padding: 24px;
  overflow: visible;
}
.compare--copy .compare__pane--ours { border-color: var(--cyanotype); }
.compare--copy ul { margin: 0; padding: 0; list-style: none; }
.compare--copy li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.95rem; }
.compare--copy .mark { font-family: var(--font-mono); font-weight: 700; }
.compare--copy .mark--no { color: #ba1a1a; }
.compare--copy .mark--yes { color: var(--cyanotype); }

.project { border: 1px solid var(--border); background: var(--ground-white); }
.spec { border: 1px solid var(--border); background: var(--ground-cool); }
.chip { border: 1px solid var(--border); background: var(--ground-white); }
.log {
  border: 1px solid var(--border);
  background: var(--ground-white);
}
.pair-bleed { border: 1px solid var(--border); }
.process { border: 1px solid var(--border); background: var(--ground-white); gap: 0; }
.process__item { padding: 18px 20px; border-bottom: 1px solid var(--border); }
.process__item:last-child { border-bottom: 0; }
.wedge {
  position: relative;
  z-index: 0;
  isolation: isolate;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ground-white);
  line-height: 1.35;
  padding: 14px 16px;
}
.wedge::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--brass-screen);
  background-repeat: repeat;
  opacity: 0.12;
  pointer-events: none;
}

.hours-box {
  border: 1px solid var(--cyanotype);
  background: var(--ground-white);
  padding: 20px 24px;
}
.hours-box h2 { margin: 4px 0 10px; }
.hours-box p { margin: 0; }
.hours-box a { color: var(--cyanotype); }

.legal-panel {
  border: 1px solid var(--border);
  background: var(--ground-white);
  padding: 28px 32px;
}
.legal-panel h2 { margin-top: 28px; }

/* Empty client-note slots stay out of the live page until filled. */
.testimonial-ledger[hidden],
.testimonial-ledger.is-empty,
.testimonial-slot[hidden],
.testimonial-slot[data-empty] { display: none; }
.testimonial-slot {
  border: 1px solid var(--border);
  background: var(--ground-white);
  padding: 16px 18px;
  margin-top: 12px;
}
.testimonial-slot blockquote {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
}
.testimonial-slot__name,
.testimonial-slot__title,
.testimonial-slot__project {
  font-family: var(--font-mono);
  font-size: 12px;
  margin: 0;
}
.testimonial-slot__name { color: var(--ink); font-weight: 600; }
.testimonial-slot__title { color: var(--graphite); }
.testimonial-slot__headshot { width: 48px; height: 48px; object-fit: cover; margin-top: 12px; }

.lead-magnet {
  font-family: var(--font-mono);
  font-size: 12px;
}


.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px 40px;
  padding: 24px 0 8px;
}
.logo-strip img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: opacity 0.15s ease, filter 0.15s ease;
}
.logo-strip img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.hero-minimal {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink) center/cover no-repeat;
}
.hero-minimal__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 17, 22, 0.78) 0%, rgba(11, 17, 22, 0.32) 22%, rgba(11, 17, 22, 0) 50%);
}
.hero-minimal__caption {
  position: relative;
  z-index: 1;
  padding: 0 32px 40px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--linen);
}
.hero-minimal__caption p { margin: 0 0 4px; }
.hero-minimal__caption p:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
  .hero-minimal__caption { padding: 0 48px 56px; font-size: 15px; }
}

/* Mobile fix: .proof, .registry, .hero-split, .stage-grid, .milestone-grid each
   define their own grid-template-columns after the shared responsive rules
   above, so the earlier media queries lost the cascade on source order alone.
   Redeclaring here, after all of them, restores the intended mobile layout. */
@media (max-width: 980px) {
  .proof, .registry, .hero-split, .stage-grid, .milestone-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .proof, .registry, .hero-split, .stage-grid, .milestone-grid {
    grid-template-columns: 1fr;
  }
}
