:root {
  --navy-950: #0b1f3a;
  /* Deeper field blue for header chrome (darker than logo-adjacent --navy-950) */
  --navy-980: #030c18;
  --navy-900: #102a4c;
  --navy-800: #14325a;
  --blue-600: #1d4ed8;
  --blue-500: #2563eb;
  --blue-100: #e8f0ff;
  --blue-50: #f3f7ff;
  --surface: #ffffff;
  --surface-2: #f5f8ff;
  --text: #0b1f3a;
  --muted: rgba(11, 31, 58, 0.68);
  --muted2: rgba(11, 31, 58, 0.52);
  --border: rgba(15, 47, 89, 0.12);
  --border-strong: rgba(15, 47, 89, 0.18);
  --shadow: 0 18px 50px rgba(15, 47, 89, 0.12);
  --shadow-sm: 0 10px 30px rgba(15, 47, 89, 0.1);
  --radius: 0px;
  --radius-sm: 0px;
  --max: 1120px;
  --font: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --display: "Sora", var(--font);
  --header-h: 96px;
  --scroll-pad: 120px;
  --ring: rgba(37, 99, 235, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-pad);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.55;
  background: var(--surface-2);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

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

a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(16, 42, 76, 0.25);
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(900px 520px at 12% -10%, rgba(37, 99, 235, 0.16), transparent 62%),
    radial-gradient(760px 520px at 92% 8%, rgba(16, 42, 76, 0.08), transparent 58%),
    radial-gradient(700px 520px at 62% 92%, rgba(37, 99, 235, 0.1), transparent 62%),
    linear-gradient(180deg, var(--surface-2), #ffffff 55%, var(--surface-2));
}

.bg::before {
  content: "";
  position: absolute;
  inset: -40px;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(16, 42, 76, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 42, 76, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 18%, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.12) 62%, transparent 74%);
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  transform: translateY(-140%);
  transition: transform 180ms ease;
  z-index: 9999;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

.topbar {
  position: relative;
  z-index: 70;
  background: var(--navy-980);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.topbar .container {
  padding-left: clamp(28px, 5vw, 56px);
  padding-right: clamp(28px, 5vw, 56px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
  flex: 0 1 auto;
}

.topbar-kicker {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.topbar-muted {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex: 0 0 auto;
}

.topbar-phone {
  color: #ffffff;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  /* No backdrop-filter: it creates a containing block and clips viewport-fixed overlays (drawer). */
  background: var(--navy-980);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.site-header[data-shadow="true"] {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.site-header a:hover {
  text-decoration: none;
}

.site-header .btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: none;
}

.site-header .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.52);
  transform: translateY(-1px);
}

.site-header .btn-primary {
  background: #ffffff;
  color: var(--navy-980);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.site-header .btn-primary:hover {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--navy-980);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  min-width: 0;
  width: fit-content;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: clamp(56px, 11vw, 92px);
  height: clamp(56px, 11vw, 92px);
  border-radius: 0;
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  overflow: visible;
  flex: 0 0 auto;
  padding: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav {
  justify-self: stretch;
  position: relative;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.nav-drawer {
  display: contents;
}

.nav-links .nav-link-contact {
  display: none;
}

.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 12, 24, 0.52);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.nav-scrim[data-open="true"] {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 2px;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.88);
}

.nav-links a {
  padding: 10px 10px;
  border-radius: 0;
  white-space: nowrap;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.9);
}

.nav-links a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.nav-drawer-bar {
  display: none;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-radius: 0;
  padding: 11px 12px;
  cursor: pointer;
  box-shadow: none;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.42);
}

.nav-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.18);
}

.burger {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0;
  transition: transform 160ms ease, opacity 160ms ease, top 160ms ease;
}

.burger::before {
  top: -6px;
}

.burger::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .burger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .burger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .burger::after {
  top: 0;
  transform: rotate(-45deg);
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 0;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
  white-space: nowrap;
  min-height: 44px;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  border-color: rgba(37, 99, 235, 0.35);
  background: var(--navy-900);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.18);
}

.btn-primary:hover {
  background: var(--blue-600);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 18px 46px rgba(37, 99, 235, 0.22);
}

.btn-secondary {
  border-color: var(--border-strong);
  background: rgba(37, 99, 235, 0.06);
  color: var(--navy-900);
}

.btn-outline {
  background: #ffffff;
  border-color: var(--border-strong);
  color: var(--navy-900);
}

.hero {
  padding: 34px 0 10px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -60px -20px auto -20px;
  height: 520px;
  background: radial-gradient(520px 260px at 18% 35%, rgba(37, 99, 235, 0.14), transparent 62%),
    radial-gradient(520px 280px at 70% 10%, rgba(16, 42, 76, 0.08), transparent 62%);
  filter: blur(18px);
  opacity: 0.95;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding: 8px 12px;
  border-radius: 0;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(11, 31, 58, 0.86);
  width: fit-content;
  max-width: 100%;
}

.kicker-mark {
  width: 10px;
  height: 10px;
  border-radius: 0;
  background: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

h1,
h2,
h3 {
  font-family: var(--display);
}

h1 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
  color: var(--navy-950);
}

.lede {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 17px);
  max-width: 58ch;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.hero-copy > .hero-panel {
  margin-top: 18px;
}

.meta-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-sm);
  padding: 0;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}

.meta-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
  background: var(--navy-900);
}

.meta-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.meta-card-body {
  padding: 12px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.meta-k {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11, 31, 58, 0.55);
}

.meta-v {
  margin-top: 6px;
  font-weight: 850;
  color: rgba(11, 31, 58, 0.9);
  letter-spacing: -0.01em;
}

.hero-panel {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: #ffffff;
  background-image: radial-gradient(900px 420px at 20% 0%, rgba(37, 99, 235, 0.12), transparent 55%),
    radial-gradient(700px 360px at 90% 30%, rgba(16, 42, 76, 0.05), transparent 58%);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: rgba(37, 99, 235, 0.12);
  opacity: 0.9;
  mask: linear-gradient(#000, transparent 72%);
  pointer-events: none;
}

.panel-top {
  padding: 18px 18px 0;
  position: relative;
}

.panel-title {
  font-weight: 850;
  letter-spacing: -0.04em;
  font-size: 18px;
  color: var(--navy-950);
}

.panel-sub {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.checklist {
  list-style: none;
  padding: 14px 18px 18px;
  margin: 0;
  display: grid;
  gap: 10px;
  position: relative;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(11, 31, 58, 0.82);
  font-weight: 650;
}

.checklist li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 0;
  background: var(--blue-600);
  flex: 0 0 auto;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.panel-foot {
  padding: 14px 18px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(232, 240, 255, 0.55);
  position: relative;
}

.text-link {
  font-weight: 900;
  color: var(--blue-600);
  letter-spacing: -0.02em;
}

.muted {
  color: var(--muted);
}

.section {
  padding: clamp(40px, 5vw, 64px) 0;
  scroll-margin-top: calc(var(--scroll-pad) + 10px);
}

.section-alt {
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-tiles {
  padding-top: 18px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.04em;
  position: relative;
  color: var(--navy-950);
}

.section-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 10px;
  border-radius: 0;
  background: var(--blue-600);
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.tile {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 8px;
  min-height: 184px;
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
  position: relative;
  overflow: hidden;
}

.tile::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(420px 220px at 10% 0%, rgba(37, 99, 235, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 140ms ease;
  pointer-events: none;
}

.tile:hover {
  text-decoration: none;
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: var(--shadow);
}

.tile:hover::before {
  opacity: 1;
}

.tile h3 {
  margin: 0;
  letter-spacing: -0.03em;
  font-size: 16px;
  color: var(--navy-950);
}

.tile p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}

.tile-cta {
  margin-top: auto;
  font-family: var(--display);
  font-weight: 900;
  color: var(--blue-600);
  letter-spacing: -0.02em;
}

.grid {
  display: grid;
  gap: 14px;
}

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

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: calc(var(--scroll-pad) + 18px);
}

.card h3 {
  margin: 0;
  letter-spacing: -0.03em;
  color: var(--navy-950);
}

.card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.card-accent {
  border-color: rgba(37, 99, 235, 0.22);
  background: radial-gradient(900px 420px at 10% 0%, rgba(37, 99, 235, 0.1), transparent 55%), #ffffff;
}

.list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
  color: rgba(11, 31, 58, 0.78);
  font-size: 14px;
  font-weight: 650;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: var(--navy-900);
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.scope-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: calc(var(--scroll-pad) + 18px);
}

.scope-card h3 {
  margin: 0;
  letter-spacing: -0.03em;
  color: var(--navy-950);
}

.scope-card p {
  margin: 8px 0 0;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.step {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 0;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 900;
  color: #ffffff;
  background: var(--navy-900);
}

.step h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--navy-950);
}

.step p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 16px;
  align-items: start;
}

.prose {
  margin: 0;
  color: rgba(11, 31, 58, 0.82);
  font-weight: 650;
  max-width: 62ch;
}

.quote {
  margin: 16px 0 0;
  padding: 14px 14px;
  border-left: 4px solid rgba(37, 99, 235, 0.55);
  background: rgba(232, 240, 255, 0.55);
  border-radius: 0;
}

.quote p {
  margin: 0;
  font-weight: 800;
  color: rgba(11, 31, 58, 0.9);
}

.quote footer {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

.inline-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.about-panel {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  min-height: 320px;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  background-image: radial-gradient(700px 360px at 20% 10%, rgba(37, 99, 235, 0.14), transparent 60%),
    radial-gradient(700px 360px at 80% 40%, rgba(16, 42, 76, 0.08), transparent 62%);
  box-shadow: var(--shadow);
}

.about-panel-photo {
  background-image: none;
  background-color: var(--navy-900);
}

.about-panel-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(3, 12, 24, 0.28) 0%,
    transparent 42%,
    transparent 58%,
    rgba(3, 12, 24, 0.45) 100%
  );
}

.about-panel-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-panel-photo .about-badge,
.about-panel-photo .about-caption,
.about-panel-photo .about-photo-credit {
  z-index: 2;
}

.about-photo-credit {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  background: rgba(3, 12, 24, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.about-photo-credit:hover {
  color: #ffffff;
  text-decoration: underline;
}

.about-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 10px 12px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  color: var(--navy-950);
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.about-lines {
  position: absolute;
  inset: auto 18px 70px 18px;
  display: grid;
  gap: 10px;
}

.about-lines span {
  height: 10px;
  border-radius: 0;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.about-lines span:nth-child(2) {
  width: 78%;
}

.about-lines span:nth-child(3) {
  width: 62%;
}

.about-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 12px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  color: rgba(11, 31, 58, 0.86);
  font-weight: 850;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.review {
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.review blockquote {
  margin: 0;
}

.review p {
  margin: 0;
  font-weight: 800;
  color: rgba(11, 31, 58, 0.9);
}

.review figcaption {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: baseline;
  font-weight: 850;
  font-size: 13px;
}

.review-name {
  color: rgba(11, 31, 58, 0.9);
}

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

.shot {
  min-height: 170px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.shot::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(220px 140px at 30% 30%, rgba(37, 99, 235, 0.16), transparent 62%),
    radial-gradient(240px 160px at 70% 60%, rgba(16, 42, 76, 0.08), transparent 66%);
  filter: blur(8px);
}

.shot-photo::before {
  display: none;
}

.shot-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shot-tag {
  position: absolute;
  z-index: 1;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 0;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  font-family: var(--display);
  font-weight: 900;
  font-size: 13px;
  color: var(--navy-950);
}

.gallery-more {
  margin: 14px 0 0;
  font-weight: 650;
}

.metro-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metro {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.metro-name {
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 18px;
  color: var(--navy-950);
}

.cta-band {
  padding: 34px 0;
}

.cta-band-inner {
  border-radius: var(--radius);
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-band h2 {
  margin: 0;
  letter-spacing: -0.04em;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--navy-950);
}

.cta-band-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 12px;
  align-items: start;
}

.contact-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  margin: 0;
  letter-spacing: -0.03em;
  color: var(--navy-950);
}

.stack {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.fineprint {
  color: rgba(11, 31, 58, 0.62);
  font-size: 13px;
  margin: 12px 0 0;
  font-weight: 650;
}

.form-status {
  margin: 0;
  min-height: 1.4em;
  font-size: 14px;
  font-weight: 750;
  color: rgba(11, 31, 58, 0.82);
}

.form-status[data-variant="success"] {
  color: #0f5132;
}

.form-status[data-variant="error"] {
  color: #9f1239;
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label span {
  display: block;
  font-weight: 900;
  font-size: 13px;
  color: rgba(11, 31, 58, 0.72);
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 0;
  border: 1px solid var(--border);
  background: #ffffff;
  color: rgba(11, 31, 58, 0.92);
  outline: none;
  font-weight: 650;
}

input::placeholder,
textarea::placeholder {
  color: rgba(11, 31, 58, 0.42);
}

input:focus,
textarea:focus {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.footer {
  padding: 34px 0 22px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
  align-items: start;
}

.footer-brand {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 16px;
  color: var(--navy-950);
}

.footer-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
  max-width: 62ch;
}

.footer-col {
  display: grid;
  gap: 8px;
}

.footer-heading {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  color: var(--navy-950);
}

.footer-col a {
  font-weight: 850;
  color: rgba(11, 31, 58, 0.86);
}

.footer-sub {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

@media (max-width: 1080px) {
  .nav-links a {
    padding: 9px 9px;
  }
}

@media (max-width: 1024px) {
  :root {
    --scroll-pad: 128px;
  }

  .header-inner {
    grid-template-columns: 1fr max-content max-content;
    grid-template-areas: "brand contact toggle";
    gap: 8px 10px;
    row-gap: 0;
    align-items: center;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
  }

  .header-cta {
    grid-area: contact;
    display: flex;
    align-items: center;
    gap: 0;
    flex: 0 0 auto;
    min-width: 0;
  }

  .header-cta .btn-primary {
    display: none;
  }

  .header-cta .btn-outline {
    min-height: 44px;
    padding: 0 12px;
    font-size: 12px;
    letter-spacing: -0.03em;
    white-space: nowrap;
    align-items: center;
  }

  .nav {
    grid-area: toggle;
    justify-content: flex-end;
    flex: 0 0 auto;
  }

  .nav-drawer-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    padding-bottom: 12px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    cursor: pointer;
    border-radius: 0;
  }

  .nav-drawer-close:hover {
    background: rgba(255, 255, 255, 0.26);
    border-color: rgba(255, 255, 255, 0.58);
  }

  .nav-drawer-close-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: block;
  }

  .nav-drawer-close-icon::before,
  .nav-drawer-close-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    background: currentColor;
  }

  .nav-drawer-close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav-drawer-close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    min-height: 44px;
    min-width: 44px;
    padding: 0 12px;
    box-sizing: border-box;
  }

  .nav-toggle[aria-expanded="true"] {
    opacity: 0;
    pointer-events: none;
  }

  .nav-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, calc(100vw - 40px));
    max-width: 100%;
    padding: calc(env(safe-area-inset-top, 0px) + 12px) 16px calc(env(safe-area-inset-bottom, 0px) + 16px);
    margin: 0;
    background: var(--navy-980);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.25);
    z-index: 210;
    transform: translateX(100%);
    transition: transform 220ms ease;
    pointer-events: none;
  }

  .nav-drawer[data-open="true"] {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    gap: 8px;
    justify-content: flex-start;
    font-weight: 750;
    color: rgba(255, 255, 255, 0.88);
  }

  .nav-links a {
    padding: 12px 12px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    white-space: normal;
    color: rgba(255, 255, 255, 0.92);
  }

  .nav-links a:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .nav-links a.nav-link-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin-top: 10px;
    padding: 0 14px;
    box-sizing: border-box;
    background: #ffffff;
    color: var(--navy-980);
    border: 1px solid rgba(255, 255, 255, 0.45);
    font-family: var(--display);
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .nav-links a.nav-link-contact:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--navy-980);
  }

  .nav-scrim {
    display: block;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

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

  .cards {
    grid-template-columns: 1fr;
  }

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

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

  .split-2,
  .contact-split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  :root {
    --scroll-pad: 112px;
  }

  .topbar-muted {
    display: none;
  }

  .tile-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .metro-grid {
    grid-template-columns: 1fr;
  }

  .scope-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .burger::before,
  .burger::after,
  .skip-link,
  .tile,
  .nav-scrim,
  .nav-drawer {
    transition: none;
  }
}
