/* ═══════════════════════════════════════════════════════════
   ASCENT IMAGERY — flight-deck visual system
   Palette pulled from the source aerial: deep ink, gulf teal,
   warm sand. Mono chrome = telemetry. Serif italic = the lift.
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* surfaces */
  --ink:        #070b0e;
  --ink-2:      #0b1116;
  --ink-3:      #111a20;
  --ink-4:      #18242c;

  /* brand */
  --teal:       #3fd9c4;
  --teal-deep:  #14a894;
  --sand:       #e8c9a0;
  --signal:     #ff6b4a;

  /* type */
  --paper:      #f2f5f4;
  --mute:       #8fa3a8;
  --faint:      #5d7078;
  --line:       rgba(255,255,255,.09);
  --line-2:     rgba(255,255,255,.16);

  /* system */
  --f-sans: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --f-serif:'Instrument Serif', Georgia, 'Times New Roman', serif;
  --f-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --wrap:   1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --r:      4px;
  --r-lg:   10px;
  --ease:   cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --pad-section: clamp(5rem, 11vh, 9rem);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--paper);
  background: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
[hidden] { display: none !important; }

::selection { background: var(--teal); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed; top: .6rem; left: .6rem; z-index: 999;
  padding: .6rem 1rem; background: var(--teal); color: var(--ink);
  font-weight: 600; border-radius: var(--r);
  transform: translateY(-160%); transition: transform .2s var(--ease);
}
.skip-link:focus { transform: none; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--pad-section); position: relative; }
.section--alt { background: var(--ink-2); }
.section--alt::before,
.section--alt::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: var(--line);
}
.section--alt::before { top: 0; }
.section--alt::after  { bottom: 0; }

/* ── TYPE PRIMITIVES ────────────────────────────────────── */
.eyebrow {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--f-mono);
  font-size: .688rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.4rem;
}
.eyebrow i {
  font-style: normal;
  color: var(--faint);
  padding-right: .6rem;
  border-right: 1px solid var(--line-2);
}
.eyebrow--live { color: var(--paper); }

.pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(63,217,196,.6);
  animation: pulse 2.4s infinite;
  flex: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(63,217,196,.5); }
  70%  { box-shadow: 0 0 0 9px rgba(63,217,196,0); }
  100% { box-shadow: 0 0 0 0 rgba(63,217,196,0); }
}

.sect-title {
  font-size: clamp(2.1rem, 5.4vw, 4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.sect-title em,
.hero__title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--sand);
}

.sect-lede {
  color: var(--mute);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  max-width: 46ch;
  line-height: 1.65;
}

.sect-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); max-width: 58rem; }
.sect-head .sect-lede { margin-top: 1.5rem; }
.sect-head--split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 4rem;
  align-items: end;
  max-width: none;
}
.sect-head--split .sect-lede { margin-top: 0; text-align: right; margin-left: auto; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  --btn-bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem;
  font-size: .9rem; font-weight: 600; letter-spacing: -.005em;
  border: 1px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  background: var(--btn-bg);
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.btn--solid { --btn-bg: var(--teal); color: var(--ink); border-color: var(--teal); }
.btn--solid:hover { --btn-bg: #5ae8d4; border-color: #5ae8d4; transform: translateY(-2px); }

.btn--line { color: var(--paper); border-color: var(--line-2); }
.btn--line:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn--line span { transition: transform .25s var(--ease); }
.btn--line:hover span { transform: translateX(4px); }

.btn--sm { padding: .62rem 1.1rem; font-size: .82rem; }
.btn--block { width: 100%; padding-block: 1.05rem; }
.btn[disabled] { opacity: .55; cursor: wait; transform: none; }

/* ── MASTHEAD ───────────────────────────────────────────── */
.masthead {
  position: fixed; inset: 0 0 auto; z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background .35s var(--ease), border-color .35s var(--ease),
              backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.masthead.is-stuck {
  background: rgba(7,11,14,.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.masthead.is-hidden { transform: translateY(-101%); }
.masthead { transition: transform .4s var(--ease), background .35s var(--ease), border-color .35s var(--ease); }

.masthead__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 1.05rem var(--gutter);
  display: flex; align-items: center; gap: 2rem;
}

.masthead__progress {
  position: absolute; bottom: -1px; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--teal-deep), var(--teal));
  transition: width .1s linear;
}

/* brand */
.brand { display: flex; align-items: center; gap: .7rem; flex: none; }
.brand__mark { width: 30px; height: 30px; overflow: visible; }
.bm-ring { fill: none; stroke: var(--line-2); stroke-width: 1.4; transition: stroke .3s var(--ease); }
.bm-peak { fill: none; stroke: var(--teal); stroke-width: 2.2; stroke-linejoin: round; }
.bm-dot  { fill: var(--sand); }
.brand:hover .bm-ring { stroke: var(--teal); }

.brand__words {
  display: flex; flex-direction: column; line-height: 1;
  font-size: .95rem;
}
.brand__words strong { font-weight: 700; letter-spacing: -.02em; }
.brand__words em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .28em;
  color: var(--mute);
  text-transform: uppercase;
  margin-top: .22rem;
}

.nav { display: flex; gap: 1.9rem; margin-inline: auto; }
.nav a {
  font-size: .875rem; font-weight: 500; color: var(--mute);
  position: relative; padding-block: .3rem;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--paper); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--paper); }

.masthead__actions { display: flex; align-items: center; gap: 1.2rem; flex: none; }
.masthead__phone {
  font-family: var(--f-mono); font-size: .8rem; color: var(--mute);
  transition: color .25s var(--ease);
}
.masthead__phone:hover { color: var(--teal); }

/* burger */
.burger {
  display: none;
  width: 42px; height: 42px;
  background: none; border: 1px solid var(--line-2); border-radius: var(--r);
  cursor: pointer; position: relative; flex: none;
}
.burger span {
  position: absolute; left: 50%; width: 17px; height: 1.5px;
  background: var(--paper); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger span:nth-child(1) { transform: translate(-50%, -4px); }
.burger span:nth-child(2) { transform: translate(-50%,  4px); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translate(-50%, 0) rotate(-45deg); }

/* ── DRAWER ─────────────────────────────────────────────── */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink);
  padding: 7.5rem var(--gutter) 3rem;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; visibility: hidden;
  transform: translateY(-1.5rem);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }

.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a {
  display: flex; align-items: baseline; gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.6rem; font-weight: 600; letter-spacing: -.03em;
}
.drawer__nav a i {
  font-style: normal; font-family: var(--f-mono);
  font-size: .7rem; color: var(--teal); letter-spacing: .1em;
}
.drawer__foot .btn { margin-bottom: 1rem; }
.drawer__foot {
  display: flex; flex-direction: column; gap: .5rem;
  align-items: flex-start;
  font-family: var(--f-mono); font-size: .82rem; color: var(--mute);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 9rem 0 0;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: -6% 0 -6%; z-index: -3; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%;
  filter: saturate(.92) contrast(1.05) brightness(.88);
  will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(7,11,14,.78) 0%, rgba(7,11,14,.18) 30%, rgba(7,11,14,.74) 72%, var(--ink) 100%),
    linear-gradient(95deg, rgba(7,11,14,.8) 0%, rgba(7,11,14,.1) 62%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: .32; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* viewfinder brackets */
.viewfinder { position: absolute; inset: clamp(1rem,3vw,2.2rem); pointer-events: none; z-index: 1; }
.vf { position: absolute; width: 26px; height: 26px; border: 1px solid rgba(255,255,255,.3); }
.vf--tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.vf--tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.vf--bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.vf--br { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.vf__reticle {
  position: absolute; top: 50%; left: 50%; width: 40px; height: 40px;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(255,255,255,.14); border-radius: 50%;
}
.vf__reticle::before, .vf__reticle::after {
  content: ""; position: absolute; background: rgba(255,255,255,.18);
}
.vf__reticle::before { left: 50%; top: -10px; bottom: -10px; width: 1px; }
.vf__reticle::after  { top: 50%; left: -10px; right: -10px; height: 1px; }

.hero__body {
  max-width: var(--wrap); width: 100%;
  margin-inline: auto; padding-inline: var(--gutter);
  padding-bottom: clamp(3rem, 8vh, 6rem);
  position: relative; z-index: 2;
}
.hero__title {
  font-size: clamp(2.7rem, 8.4vw, 6.4rem);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.045em;
  margin-bottom: 1.8rem;
  text-wrap: balance;
}
.hero__lede {
  max-width: 44ch;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  color: #c3d0d2;
  line-height: 1.6;
  margin-bottom: 2.4rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }

/* telemetry bar */
.telemetry {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line);
  background: rgba(7,11,14,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.telemetry__row {
  max-width: var(--wrap); margin-inline: auto;
  padding: .85rem var(--gutter);
  display: flex; gap: clamp(1.2rem, 4vw, 3.5rem);
  font-family: var(--f-mono); font-size: .7rem;
  color: var(--paper);
  overflow-x: auto; scrollbar-width: none;
}
.telemetry__row::-webkit-scrollbar { display: none; }
.telemetry__row span { display: flex; align-items: center; gap: .55rem; white-space: nowrap; }
.telemetry__row i {
  font-style: normal; color: var(--faint);
  font-size: .625rem; letter-spacing: .16em;
}
.telemetry__clock b { color: var(--signal); font-weight: 500; }

/* ── TICKER ─────────────────────────────────────────────── */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
  padding-block: .9rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
  display: flex; align-items: center; gap: 2.2rem;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker span {
  font-family: var(--f-mono); font-size: .75rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--mute);
  white-space: nowrap;
}
.ticker b { color: var(--teal); font-size: .5rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── WORK GRID ──────────────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.75rem, 1.4vw, 1.1rem);
}
.work {
  position: relative;
  grid-column: span 2;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-3);
  border: 1px solid var(--line);
  isolation: isolate;
}
.work--hero { grid-column: span 4; aspect-ratio: 21 / 9; }
.work--wide { grid-column: span 4; aspect-ratio: 21 / 8; }

.work__img {
  position: absolute; inset: 0;
  /* --img is the only thing a real project photo needs to change.
     Falls back to the placeholder aerial until one is set. */
  background-image: var(--img, url('assets/aerial-1200.jpg'));
  background-size: cover;
  background-position: var(--shot, 50% 50%);
  transform: scale(var(--zoom, 1.2));
  filter: saturate(var(--sat, .55)) contrast(1.06) brightness(var(--bri, .62))
          hue-rotate(var(--hue, 0deg));
  transition: transform .9s var(--ease-out), filter .6s var(--ease);
}
.work::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(7,11,14,.05) 30%, rgba(7,11,14,.88) 100%);
  transition: background .45s var(--ease);
}
.work:hover .work__img {
  transform: scale(calc(var(--zoom, 1.2) * 1.06));
  filter: saturate(calc(var(--sat, .55) + .4)) contrast(1.06)
          brightness(calc(var(--bri, .62) + .16)) hue-rotate(var(--hue, 0deg));
}

.work figcaption {
  position: absolute; z-index: 2; inset: auto 0 0 0;
  padding: clamp(1rem, 2.4vw, 1.75rem);
}
.work__cat {
  display: inline-block;
  font-family: var(--f-mono); font-size: .625rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .55rem;
}
.work figcaption h3 {
  font-size: clamp(1.05rem, 2.1vw, 1.55rem);
  font-weight: 600; letter-spacing: -.025em; line-height: 1.15;
}
.work__meta {
  font-family: var(--f-mono); font-size: .7rem; color: var(--mute);
  margin-top: .4rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.work:hover .work__meta, .work:focus-within .work__meta { opacity: 1; transform: none; }

.work-note {
  margin-top: 2.5rem; text-align: center;
  font-family: var(--f-mono); font-size: .8rem; color: var(--faint);
}
.work-note a { color: var(--teal); border-bottom: 1px solid currentColor; padding-bottom: 1px; }

/* ── STATS ──────────────────────────────────────────────── */
.stats { border-block: 1px solid var(--line); background: var(--ink-2); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(2rem, 4.5vw, 3.2rem) clamp(.5rem, 2vw, 1.5rem);
  display: flex; flex-direction: column; gap: .5rem;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; }
.stat__n {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 700; letter-spacing: -.05em; line-height: 1;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.stat__l {
  font-family: var(--f-mono); font-size: .688rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--faint);
}

/* ── SERVICES ───────────────────────────────────────────── */
.svc-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.svc {
  background: var(--ink-2);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  position: relative;
  transition: background .35s var(--ease);
}
.svc::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.svc:hover { background: var(--ink-3); }
.svc:hover::before { transform: scaleX(1); }

.svc__no {
  position: absolute; top: clamp(1.6rem,3vw,2.4rem); right: clamp(1.6rem,3vw,2.4rem);
  font-family: var(--f-mono); font-size: .688rem;
  color: var(--faint); letter-spacing: .1em;
}
.svc__head { display: flex; align-items: center; gap: .85rem; margin-bottom: .9rem; }
.svc__icon {
  width: 26px; height: 26px; flex: none;
  fill: none; stroke: var(--teal); stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .3s var(--ease), transform .45s var(--ease);
}
.svc:hover .svc__icon { stroke: var(--sand); transform: translateY(-2px); }
.svc h3 { font-size: 1.16rem; font-weight: 600; letter-spacing: -.025em; }
.svc p { color: var(--mute); font-size: .935rem; line-height: 1.62; }
.svc__tags {
  display: block; margin-top: 1.1rem;
  font-family: var(--f-mono); font-size: .688rem;
  color: var(--faint); letter-spacing: .06em;
  padding-top: 1rem; border-top: 1px solid var(--line);
}

/* ── PROCESS ────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: clamp(1.6rem, 3.4vw, 3rem);
  counter-reset: s;
  position: relative;
}
.steps::before {
  content: ""; position: absolute; top: 11px; left: 0; right: 0;
  height: 1px; background: var(--line-2);
}
.step { position: relative; padding-top: 2.6rem; }
.step__n {
  position: absolute; top: 0; left: 0;
  font-family: var(--f-mono); font-size: .75rem;
  color: var(--teal); letter-spacing: .1em;
  background: var(--ink); padding-right: .9rem;
  line-height: 24px;
}
.step__n::after {
  content: ""; position: absolute; top: 50%; left: -0; width: 0;
}
.step h3 { font-size: 1.24rem; font-weight: 600; letter-spacing: -.03em; margin-bottom: .6rem; }
.step p { color: var(--mute); font-size: .935rem; line-height: 1.62; }

/* ── COVERAGE ───────────────────────────────────────────── */
.coverage {
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(0,1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.counties {
  display: flex; flex-wrap: wrap; gap: .45rem;
  margin: 2rem 0 1.5rem;
}
.counties li {
  font-family: var(--f-mono); font-size: .72rem;
  letter-spacing: .08em;
  padding: .42rem .8rem;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  color: var(--mute);
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.counties li:hover { color: var(--ink); background: var(--teal); border-color: var(--teal); }
.coverage__note {
  font-size: .875rem; color: var(--faint); line-height: 1.7;
  padding-top: 1.2rem; border-top: 1px solid var(--line);
}

.radar {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 50% 50%, var(--ink-3) 0%, var(--ink-2) 70%);
  padding: 1rem;
  overflow: hidden;
}
.radar svg { width: 100%; height: auto; overflow: visible; }
.r-ring { fill: none; stroke: var(--line-2); stroke-width: 1; stroke-dasharray: 3 5; }
.r-ring--edge { stroke: var(--teal); stroke-opacity: .45; stroke-dasharray: none; }
.r-cross { stroke: var(--line); stroke-width: 1; }
.r-shore { fill: none; stroke: var(--teal); stroke-opacity: .55; stroke-width: 1.4; }
.radar text {
  /* dark halo keeps labels legible where rings and coastline cross them */
  paint-order: stroke;
  stroke: var(--ink-2);
  stroke-width: 3.5px;
  stroke-linejoin: round;
}
.r-scale {
  font-family: var(--f-mono); font-size: 11px;
  fill: var(--faint); letter-spacing: .08em;
}
.r-water {
  font-family: var(--f-mono); font-size: 13px;
  fill: var(--teal); fill-opacity: .5; letter-spacing: .1em;
}
.r-city circle { fill: var(--paper); }
.r-city text {
  font-family: var(--f-mono); font-size: 13px; fill: var(--mute);
  letter-spacing: .04em;
}
.r-city--hq circle { fill: var(--teal); }
.r-city--hq text { fill: var(--paper); font-size: 14px; }
.r-city--hq { filter: drop-shadow(0 0 8px rgba(63,217,196,.7)); }

.radar__hud {
  display: flex; gap: 1.4rem; flex-wrap: wrap;
  padding: .75rem .35rem 0;
  border-top: 1px solid var(--line);
  margin-top: .75rem;
  font-family: var(--f-mono); font-size: .688rem;
  color: var(--faint); letter-spacing: .1em;
}

/* ── STUDIO ─────────────────────────────────────────────── */
.studio {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,.82fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.studio__copy p {
  color: var(--mute); line-height: 1.72; margin-top: 1.4rem; max-width: 52ch;
}
.creds { margin-top: 2.4rem; display: grid; gap: 1px; background: var(--line);
         border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.creds > div {
  background: var(--ink); padding: 1rem 1.25rem;
  display: grid; grid-template-columns: 9rem 1fr; gap: 1rem; align-items: baseline;
}
.creds dt {
  font-family: var(--f-mono); font-size: .688rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--faint);
}
.creds dd { font-size: .92rem; color: var(--paper); }

.quote-stack { display: grid; gap: 1px; background: var(--line);
               border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.quote { background: var(--ink-2); padding: clamp(1.5rem, 3vw, 2rem); }
.quote p {
  font-family: var(--f-serif); font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.45; letter-spacing: -.01em; color: var(--paper);
}
.quote p::before { content: "“"; color: var(--sand); }
.quote p::after  { content: "”"; color: var(--sand); }
.quote footer { display: flex; align-items: center; gap: .8rem; margin-top: 1.3rem; }
.quote__av {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--ink-4); color: var(--teal);
  font-family: var(--f-mono); font-size: .688rem; letter-spacing: .06em;
  border: 1px solid var(--line-2);
}
.quote footer > span:last-child { display: flex; flex-direction: column; line-height: 1.35; }
.quote footer b { font-size: .875rem; font-weight: 600; }
.quote footer span span,
.quote footer > span:last-child { font-family: var(--f-mono); font-size: .688rem; color: var(--faint); letter-spacing: .05em; }
.quote footer b { font-family: var(--f-sans); letter-spacing: -.01em; color: var(--paper); }

/* ── CONTACT ────────────────────────────────────────────── */
.contact { background: var(--ink-2); border-top: 1px solid var(--line); }
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact__list { margin-top: 2.4rem; border-top: 1px solid var(--line); }
.contact__list li {
  display: grid; grid-template-columns: 6rem 1fr; gap: 1rem;
  padding: .95rem 0; border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.contact__list span:first-child {
  font-family: var(--f-mono); font-size: .688rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--faint);
}
.contact__list a, .contact__list b {
  font-size: 1rem; font-weight: 500;
  transition: color .25s var(--ease);
}
.contact__list a { color: var(--teal); }
.contact__list a:hover { color: var(--sand); }

/* form */
.form {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3.4vw, 2.5rem);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field label {
  font-family: var(--f-mono); font-size: .688rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--mute); margin-bottom: .5rem;
}
.field abbr { color: var(--teal); text-decoration: none; }

.field input, .field textarea, .field select {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  color: var(--paper);
  font-size: .95rem;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 7.5rem; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:hover, .field textarea:hover, .field select:hover { border-color: rgba(255,255,255,.28); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--teal); background: var(--ink-3);
}
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible { outline: none; }

.select { position: relative; }
.select select { appearance: none; -webkit-appearance: none; padding-right: 2.6rem; cursor: pointer; }
.select select option { background: var(--ink-2); color: var(--paper); }
.select svg {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  width: 11px; pointer-events: none;
  fill: none; stroke: var(--mute); stroke-width: 1.6; stroke-linecap: round;
}

.field__err {
  font-family: var(--f-mono); font-size: .688rem;
  color: var(--signal); margin-top: .4rem; min-height: 0;
  opacity: 0; transition: opacity .2s var(--ease);
}
.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid select { border-color: var(--signal); }
.field.is-invalid .field__err { opacity: 1; }

.form__fine {
  font-size: .78rem; color: var(--faint); margin-top: 1rem; text-align: center;
}
.form__done {
  margin-top: 1.4rem; padding: 1.1rem 1.25rem;
  border: 1px solid var(--teal); border-radius: var(--r);
  background: rgba(63,217,196,.08);
  display: flex; flex-direction: column; gap: .2rem;
}
.form__done strong { color: var(--teal); font-size: .95rem; }
.form__done span { font-size: .875rem; color: var(--mute); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); background: var(--ink); }
.footer__top {
  display: grid;
  grid-template-columns: minmax(0,1.6fr) repeat(3, minmax(0,1fr));
  gap: 2.5rem;
  padding-block: clamp(3rem, 7vw, 4.5rem) 2.5rem;
}
.footer__brand p {
  color: var(--faint); font-size: .875rem; line-height: 1.7;
  margin-top: 1.1rem; max-width: 34ch;
}
.footer__col h3 {
  font-family: var(--f-mono); font-size: .688rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--paper); margin-bottom: 1rem;
}
.footer__col a {
  display: block; padding: .32rem 0;
  font-size: .9rem; color: var(--faint);
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.footer__col a:hover { color: var(--teal); transform: translateX(3px); }

.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
  padding-block: 1.5rem 2rem;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono); font-size: .688rem;
  color: var(--faint); letter-spacing: .06em;
}
.footer__cert { color: var(--teal); opacity: .75; }

/* ── REVEAL ─────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav, .masthead__actions { display: none; }
  .burger { display: block; margin-left: auto; }
  .coverage, .studio, .contact__grid { grid-template-columns: 1fr; }
  .sect-head--split { grid-template-columns: 1fr; align-items: start; }
  .sect-head--split .sect-lede { text-align: left; margin-left: 0; }
  .work { grid-column: span 4; aspect-ratio: 16 / 10; }
  .work--hero, .work--wide { aspect-ratio: 16 / 9; }
  .steps::before { display: none; }
  /* brackets collide with the brand mark and burger at this width */
  .viewfinder { display: none; }
  .step { padding-top: 0; padding-left: 3rem; }
  .step__n { top: .25rem; }
}

@media (max-width: 620px) {
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .creds > div { grid-template-columns: 1fr; gap: .25rem; }
  .contact__list li { grid-template-columns: 1fr; gap: .1rem; }
  .footer__bottom { flex-direction: column; }
  .hero { min-height: 92svh; }
  .work { aspect-ratio: 4 / 3; }
}

/* ── MOTION / PRINT ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
}

@media print {
  .masthead, .drawer, .ticker, .telemetry, .viewfinder, .hero__grain { display: none; }
  body { background: #fff; color: #000; }
}
