/* LMT — shared design tokens and layout. No external dependencies. */
:root {
  --lmt-navy: #193050;
  --lmt-deep: #0d1726;
  --lmt-light: #f5f6f7;
  --lmt-graphite: #1b1f24;
  --lmt-gray: #7a8491;
  --lmt-lime: #c7ef3a;
  --line: #d8dde2;
  --muted: #505c69;
  --gutter: clamp(1.25rem, 4.5vw, 5.5rem);
  color-scheme: light;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 7rem;
}
body {
  overflow-wrap: anywhere;
  margin: 0;
  background: #fff;
  color: var(--lmt-graphite);
  font-family:
    Manrope,
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-underline-offset: 0.25em;
}
a:hover {
  color: var(--lmt-navy);
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 650;
}
h1 {
  font-size: clamp(2.6rem, 5.5vw, 5.5rem);
  margin-bottom: 1.5rem;
}
h2 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  margin-bottom: 1.5rem;
}
h3 {
  font-size: 1.4rem;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
p {
  margin-bottom: 1.4rem;
}
address {
  font-style: normal;
}
::selection {
  background: var(--lmt-lime);
  color: var(--lmt-deep);
}
:focus-visible {
  outline: 3px solid #527200;
  outline-offset: 5px;
}
.dark :focus-visible,
.hero :focus-visible,
.closing :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--lmt-lime);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: 100%;
  max-width: 1600px;
  padding-inline: var(--gutter);
  margin-inline: auto;
}
.section {
  padding-block: clamp(4rem, 7vw, 7.5rem);
}
.compact {
  padding-top: 1.5rem;
}
.pale {
  background: var(--lmt-light);
}
.dark {
  background: var(--lmt-navy);
  color: #fff;
}
.dark p {
  color: #d4dce6;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
}
.lead {
  font-size: clamp(1.125rem, 1.45vw, 1.3rem);
  line-height: 1.65;
  max-width: 43rem;
  color: var(--muted);
}
.eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, Consolas, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}
.dark .eyebrow,
.hero .eyebrow,
.closing .eyebrow {
  color: var(--lmt-lime);
}
.small {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 1rem;
  background: var(--lmt-lime);
  color: var(--lmt-deep);
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: none;
}
/* Header: all navigation remains available without JavaScript. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 96px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--lmt-navy);
}
.brand-name {
  font-size: 3rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.075em;
}
.brand-dot {
  color: #68831d;
}
.brand-sub {
  font-size: 0.625rem;
  letter-spacing: 0.09em;
  line-height: 1.6;
  font-weight: 750;
  border-left: 1px solid var(--line);
  padding-left: 0.85rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.6vw, 1.8rem);
}
.main-nav a {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 48px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}
.main-nav a::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lmt-navy);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.15s;
}
.main-nav a:hover::after,
.main-nav a[aria-current]::after {
  transform: scaleX(1);
}
.funding-nav::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: none;
  background: #66840b;
  margin-right: 0.4rem;
}
.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.75rem;
  min-height: 48px;
  background: none;
  border: 1px solid var(--line);
  padding: 0.5rem 0.8rem;
  color: var(--lmt-navy);
}
.hamburger {
  width: 20px;
  height: 12px;
  border-top: 2px solid;
  border-bottom: 2px solid;
  position: relative;
}
.hamburger::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  border-top: 2px solid;
}
/* Editorial hero and deliberately labelled photo placeholders. */
.hero {
  background: var(--lmt-deep);
  color: white;
  padding-top: 2.2rem;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}
.hero-code {
  font:
    0.75rem ui-monospace,
    monospace;
  color: #acb8c7;
  white-space: nowrap;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.13fr 1fr;
  gap: 3rem;
  align-items: stretch;
  padding: 1.3rem 0 3.5rem;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 0.5rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 5.1vw, 5.2rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.hero h1 span {
  color: var(--lmt-lime);
}
.hero .lead {
  color: #c1cad6;
  font-size: 1.1rem;
  max-width: 36rem;
  margin-block: 1.8rem;
}
.actions {
  display: flex;
  align-items: center;
  gap: 1rem 1.8rem;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 650;
  line-height: 1.5;
  transition: background 0.15s;
}
.button span {
  font-size: 1.25rem;
  line-height: 1;
}
.lime {
  background: var(--lmt-lime);
  color: var(--lmt-deep);
}
.lime:hover {
  background: #ddff75;
  color: var(--lmt-deep);
}
.navy {
  background: var(--lmt-navy);
  color: white;
}
.navy:hover {
  background: var(--lmt-deep);
  color: white;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-height: 48px;
  font-size: 0.875rem;
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  line-height: 1.5;
}
.text-link span {
  font-size: 1.2rem;
}
.hero .text-link:hover,
.dark .text-link:hover {
  color: var(--lmt-lime);
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.3rem;
  border-top: 1px solid #3b4654;
  font-size: 0.875rem;
  color: #c1cad6;
}
.hero-bottom span::before {
  content: "+";
  color: var(--lmt-lime);
  margin-right: 0.9rem;
  font-family: monospace;
}
.photo-slot {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  aspect-ratio: 4/3;
  background: #e5e9ed;
  color: #526174;
  border: 1px solid #d3dae0;
  padding: 1.35rem;
  overflow: hidden;
}
.hero-photo {
  aspect-ratio: auto;
  min-height: 480px;
  background: #1b2b40;
  border-color: #35465b;
  color: #b3c1d2;
}
.photo-corner,
.photo-caption {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  z-index: 1;
}
.photo-corner {
  padding-bottom: 1rem;
  border-bottom: 1px solid #b7c1cb;
}
.hero-photo .photo-corner {
  border-color: #435268;
}
.photo-center {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.6rem;
  text-align: center;
  font-size: 0.875rem;
}
.photo-number {
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 200;
  letter-spacing: -0.06em;
  line-height: 1;
  color: #6a7b8f;
}
.hero-photo .photo-number {
  color: #8d9fb4;
}
.photo-caption {
  max-width: 90%;
}
.photo-mark {
  position: absolute;
  bottom: 1.1rem;
  right: 1.3rem;
  font-size: 1.5rem;
  font-weight: 300;
}
.training-photo {
  min-height: 450px;
}
.section-heading {
  margin-bottom: 3rem;
}
.section-heading.wide {
  max-width: 900px;
}
.section-heading .eyebrow {
  margin-bottom: 1rem;
}
.section-heading > p:last-child {
  color: var(--muted);
}
.needs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.needs article {
  padding: 2rem 1.7rem 0;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: start;
  flex-direction: column;
}
.needs article:first-child {
  padding-left: 0;
}
.needs article:last-child {
  border: 0;
  padding-right: 0;
}
.row-number {
  font:
    0.875rem ui-monospace,
    Consolas,
    monospace;
  color: var(--muted);
}
.needs h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.needs p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.needs .text-link {
  margin-top: auto;
}
.lined-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #617086;
}
.lined-list li {
  padding: 1.2rem 0;
  border-bottom: 1px solid #617086;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.lined-list li span:last-child {
  color: var(--lmt-lime);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.case-grid article {
  min-width: 0;
}
.case-grid .photo-slot {
  min-height: 220px;
  margin-bottom: 1.5rem;
}
.case-grid .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.025em;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.case-grid h3 {
  font-size: 1.45rem;
}
.case-grid article > p:last-child {
  color: var(--muted);
  font-size: 0.9375rem;
}
.section-end {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.2rem;
}
.tags {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}
.tags li {
  padding: 0.3rem 0.7rem;
  border: 1px solid #c6cdd4;
  font-size: 0.875rem;
}
.funding {
  background: #eef1e7;
  border-block: 1px solid #dce2d0;
  padding-block: 4rem;
}
.funding-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 8rem);
}
.funding .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.funding .eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  background: #587300;
}
.funding .small {
  margin-top: 1.25rem;
  margin-bottom: 0;
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  padding: 0;
  margin: 3rem 0;
}
.steps li {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.steps h3 {
  margin-block: 1.25rem 0.75rem;
}
.steps p {
  color: var(--muted);
  font-size: 0.9375rem;
}
.technology-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
  padding: 0;
  margin: 0;
}
.technology-list li {
  border-bottom: 1px solid #617086;
  padding: 0.85rem 0;
  font-size: 0.9375rem;
}
.closing {
  background: var(--lmt-deep);
  color: white;
  padding-block: 5rem;
}
.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.closing-inner > div {
  max-width: 790px;
}
.closing .button {
  flex-shrink: 0;
}
.closing p:not(.eyebrow) {
  color: #c1cad6;
  max-width: 580px;
  margin: 0;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding-top: 2rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.breadcrumbs a {
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.page-intro {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.page-intro h1 {
  max-width: 1100px;
}
.page-intro .lead {
  max-width: 820px;
}
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr 1.2fr;
  gap: 2rem;
  padding-block: 2rem;
  border-top: 1px solid var(--line);
}
.service-row h2 {
  font-size: 1.65rem;
  line-height: 1.3;
  margin: 0;
}
.service-row p {
  color: var(--muted);
  margin: 0;
}
.service-row .row-number {
  padding-top: 0.5rem;
}
.service-rows {
  border-bottom: 1px solid var(--line);
}
.notice {
  border-left: 3px solid #688719;
  background: var(--lmt-light);
  padding: 2rem;
  margin-top: 3rem;
}
.notice h2 {
  font-size: 1.6rem;
}
.notice p:last-child {
  margin-bottom: 0;
}
.listing-title {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
}
.contact-grid h2 {
  font-size: 1.7rem;
}
.contact-email {
  display: inline-block;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 650;
  overflow-wrap: anywhere;
  margin-bottom: 1rem;
}
.contact-grid address {
  margin-block: 2rem;
}
.contact-grid form {
  padding: 2rem;
  border: 1px solid var(--line);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.full {
  grid-column: 1/-1;
}
label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid #8b96a2;
  border-radius: 0;
  background: #fff;
  color: var(--lmt-graphite);
  padding: 0.75rem;
  font-size: 1rem;
  min-height: 48px;
}
textarea {
  resize: vertical;
}
input:hover,
textarea:hover,
select:hover {
  border-color: var(--lmt-navy);
}
.form-note {
  font-size: 0.9375rem;
  color: var(--muted);
}
.form-grid .small {
  margin-top: 0.5rem;
}
.form-status {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.9375rem;
}
#email-fallback {
  margin-top: 1.5rem;
}
.prose {
  max-width: 1000px;
}
.prose h2 {
  font-size: 1.7rem;
  margin-top: 2rem;
}
.prose h2:first-child {
  margin-top: 0;
}
.site-footer {
  background: #101c2d;
  color: #c4cedb;
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.site-footer .brand {
  color: white;
}
.site-footer .brand-dot {
  color: var(--lmt-lime);
}
.site-footer .brand-sub {
  border-color: #4e5b6b;
}
.footer-grid p {
  font-size: 0.9375rem;
  margin-top: 1.5rem;
}
.footer-grid address {
  font-size: 0.875rem;
  line-height: 1.9;
}
.footer-grid h2 {
  font-size: 0.875rem;
  font-weight: 650;
  letter-spacing: 0;
  color: #fff;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.footer-grid > div > a:not(.brand) {
  display: block;
  min-height: 40px;
  font-size: 0.875rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.site-footer a:hover {
  color: var(--lmt-lime);
}
.footer-bottom {
  border-top: 1px solid #3b4654;
  padding-block: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  flex-wrap: wrap;
}
.footer-bottom a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
@media (min-width: 1600px) {
  .hero-grid {
    gap: 5rem;
  }
  .hero-photo {
    min-height: 535px;
  }
}
@media (max-width: 1150px) {
  .header-inner {
    gap: 1rem;
    min-height: 84px;
    flex-wrap: wrap;
    padding-block: 1rem;
  }
  .brand-name {
    font-size: 2.5rem;
  }
  .brand-sub {
    font-size: 0.6rem;
  }
  .main-nav {
    gap: 1rem;
  }
  .main-nav a {
    font-size: 0.8rem;
  }
  .hero-grid {
    gap: 2rem;
  }
  .hero-photo {
    min-height: 430px;
  }
  .contact-grid {
    gap: 2.5rem;
  }
  .needs article {
    padding-inline: 1rem;
  }
  .footer-grid {
    gap: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .main-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 0;
  }
  .main-nav a {
    font-size: 1rem;
    padding: 0.65rem 1rem;
    min-height: 48px;
  }
  .site-header.menu-ready .main-nav {
    display: none;
  }
  .site-header.menu-ready.menu-open .main-nav {
    display: flex;
    max-height: calc(100dvh - 100px);
    overflow: auto;
  }
  .main-nav a::after {
    left: 1rem;
    right: 1rem;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 5.2vw, 4rem);
  }
  .hero .actions {
    align-items: start;
    flex-direction: column;
  }
  .needs {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 0;
  }
  .needs article:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }
  .needs article:nth-child(3) {
    padding-left: 0;
  }
  .needs article {
    padding-inline: 1.5rem;
  }
  .split,
  .funding-inner {
    gap: 2.5rem;
  }
  .case-grid {
    gap: 1.2rem;
  }
  .case-grid h3 {
    font-size: 1.25rem;
  }
  .photo-slot {
    padding: 1rem;
  }
  .photo-corner {
    font-size: 0.7rem;
  }
  .training-photo {
    min-height: 400px;
  }
  .closing-inner {
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem 3rem;
  }
  .service-row {
    grid-template-columns: 40px 1fr 1.1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 700px) {
  .header-inner {
    min-height: 78px;
    padding-block: 0.85rem;
  }
  .brand-name {
    font-size: 2.35rem;
  }
  .brand-sub {
    font-size: 0.55rem;
    padding-left: 0.6rem;
  }
  .brand {
    gap: 0.6rem;
  }
  .hero-top {
    align-items: center;
  }
  .hero-top .eyebrow {
    font-size: 0.7rem;
    max-width: 250px;
    margin-bottom: 0;
  }
  .hero-code {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    gap: 2.5rem;
    padding-bottom: 2rem;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 9vw, 4.2rem);
  }
  .hero .lead {
    font-size: 1.0625rem;
  }
  .hero .actions {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .hero-photo {
    min-height: 300px;
    aspect-ratio: 4/3;
  }
  .hero-bottom {
    flex-direction: column;
    gap: 0.55rem;
  }
  .photo-number {
    font-size: 6rem;
  }
  .section-heading {
    margin-bottom: 2rem;
  }
  .needs {
    gap: 1.8rem 0;
  }
  .needs article {
    padding-top: 1.5rem;
  }
  .needs h3 {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
  .needs p {
    font-size: 0.9375rem;
  }
  .split,
  .funding-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .case-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .case-grid .photo-slot {
    aspect-ratio: 16/10;
    min-height: 240px;
  }
  .case-grid h3 {
    font-size: 1.5rem;
  }
  .case-grid article > p:last-child {
    font-size: 1rem;
  }
  .training-photo {
    min-height: 300px;
    aspect-ratio: 4/3;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-block: 2rem;
  }
  .steps h3 {
    font-size: 1.2rem;
  }
  .closing-inner {
    flex-direction: column;
    align-items: start;
  }
  .closing {
    padding-block: 3.5rem;
  }
  .page-intro {
    padding-block: 2rem;
  }
  .page-intro h1 {
    font-size: clamp(2.25rem, 7.5vw, 3.7rem);
  }
  .service-row {
    grid-template-columns: 30px 1fr;
    gap: 0.8rem;
    padding-block: 1.5rem;
  }
  .service-row p {
    grid-column: 2;
  }
  .service-row h2 {
    font-size: 1.5rem;
  }
  .contact-grid form {
    padding: 1.25rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.2rem;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    align-items: start;
    flex-direction: column;
    gap: 0.3rem;
  }
  .main-nav a {
    width: 100%;
    padding-inline: 0;
  }
  .main-nav a::after {
    left: 0;
    right: 0;
  }
  .breadcrumbs {
    padding-top: 1rem;
    font-size: 0.8rem;
  }
  .notice {
    padding: 1.5rem;
  }
  .contact-grid {
    gap: 1.5rem;
  }
  .technology-list {
    gap: 0 1rem;
  }
}
@media (max-width: 390px) {
  .brand-sub {
    font-size: 0.5rem;
  }
  .brand-name {
    font-size: 2.1rem;
  }
  .menu-toggle {
    gap: 0.5rem;
    padding: 0.5rem 0.65rem;
  }
  .needs {
    grid-template-columns: 1fr;
  }
  .needs article {
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1rem;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .hero .button {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .contact-grid form {
    padding: 1rem;
  }
  .technology-list {
    grid-template-columns: 1fr;
  }
  .eyebrow {
    letter-spacing: 0.06em;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
/* Prevent aspect-ratio placeholders from imposing a minimum grid track width. */
.photo-slot {
  width: 100%;
  min-width: 0;
}
.service-row > *,
.steps > *,
.needs > *,
.technology-list > * {
  min-width: 0;
}
.split > *,
.hero-grid > *,
.case-grid > *,
.funding-inner > *,
.contact-grid > * {
  min-width: 0;
}
@media print {
  .site-header,
  .site-footer,
  .closing,
  .actions,
  .photo-slot,
  .skip-link,
  .breadcrumbs {
    display: none;
  }
  body {
    font-size: 11pt;
    color: #000;
    background: #fff;
  }
  .wrap {
    max-width: none;
    padding: 0;
  }
  .section,
  .page-intro {
    padding-block: 1rem;
  }
  .hero,
  .dark,
  .funding,
  .pale {
    background: #fff;
    color: #000;
  }
  .hero h1 span,
  .hero .lead,
  .dark p,
  .hero .eyebrow,
  .dark .eyebrow {
    color: #000;
  }
  .split,
  .hero-grid,
  .contact-grid {
    display: block;
  }
  h1 {
    font-size: 28pt;
  }
  h2 {
    font-size: 22pt;
  }
  a {
    color: #000;
  }
  .steps,
  .case-grid {
    break-inside: avoid;
  }
}

/* Original supplied logo; light backing preserves its original black/navy colors. */
.brand-logo {
  display: block;
  width: 140px;
  height: auto;
  flex: none;
}
.site-footer .brand-logo {
  background: #fff;
  padding: 6px;
  width: 152px;
}
@media (max-width: 700px) {
  .brand-logo {
    width: 108px;
  }
}

/* Expanded editorial content, using the existing visual system. */
.contact-direct {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-direct a {
  min-height: 44px;
}
.call-button {
  display: none;
}
.funding-rates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.funding-rates article {
  border-top: 3px solid var(--lmt-navy);
  padding-top: 1.5rem;
}
.funding-rates h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--lmt-navy);
}
.funding-sources {
  margin-top: 2rem;
}
.company-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin: 0;
}
.company-facts div {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.company-facts dt {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 650;
  color: var(--lmt-navy);
}
.company-facts dd {
  margin: 0;
  color: var(--muted);
}
.site-footer address a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
@media (max-width: 700px) {
  .call-button {
    display: inline-flex;
  }
  .company-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 430px) {
  .funding-rates {
    grid-template-columns: 1fr;
  }
}

.funding-status {
  padding-bottom: 3rem;
}
.funding-status .notice {
  margin-top: 0;
}
