:root {
  --bg: #ffffff;
  --bg-mid: #ffffff;
  --surface: #ffffff;
  --ink: #0a0a0a;
  --ink-muted: #3d4f5c;
  --ink-faint: #6b7f8c;
  --line: #d5e0e8;
  --brand-primary: #085880;
  --accent: #085880;
  --accent-mid: #2078c0;
  --accent-soft: rgba(8, 88, 128, 0.08);
  --btn: #085880;
  --on-btn: #ffffff;
  --focus: #2078c0;
  --ok: #085880;
  --wrap: min(42rem, calc(100% - 2.5rem));
  --radius: 0.35rem;
  --font-display: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font: 400 1.05rem/1.55 var(--font-body);
  color: var(--ink);
  background: var(--bg);
}

a {
  color: var(--brand-primary);
}

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

.site {
  width: var(--wrap);
  margin: 0 auto;
  padding: 2.75rem 0 3.5rem;
}

.brand {
  display: flex;
  justify-content: center;
  margin: 0 0 2.25rem;
  opacity: 0;
  animation: rise 0.7s ease 0.05s forwards;
}

.brand img {
  width: min(22rem, 100%);
}

.hero {
  text-align: center;
  margin: 0 0 3rem;
  opacity: 0;
  animation: rise 0.75s ease 0.18s forwards;
}

.hero ldux-heading {
  display: block;
  margin: 0 0 1.25rem;
  --ink: #085880;
  --ink-muted: #3d4f5c;
  --ink-faint: #6b7f8c;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.cta {
  appearance: none;
  border: 0;
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  font: 600 0.95rem/1.2 var(--font-body);
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  background: var(--btn);
  color: var(--on-btn);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cta:hover {
  transform: translateY(-1px);
  background: #06486a;
  box-shadow: 0 10px 24px rgba(8, 88, 128, 0.22);
}

.cta:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.cta-secondary {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  font: 600 0.95rem/1.2 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  background: #ffffff;
  color: var(--brand-primary);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.cta-secondary:hover {
  border-color: var(--brand-primary);
  background: var(--accent-soft);
}

.services {
  display: grid;
  gap: 1rem;
  margin: 0 0 3rem;
  opacity: 0;
  animation: rise 0.75s ease 0.32s forwards;
}

@media (min-width: 640px) {
  .services {
    grid-template-columns: 1fr 1fr;
  }
}

.service {
  padding: 1.25rem 1.2rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.15rem);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(8, 88, 128, 0.04);
}

.service h2 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--brand-primary);
}

.service p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.contact {
  margin: 0 0 3rem;
  padding: 1.5rem 1.25rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.2rem);
  background: var(--surface);
  opacity: 0;
  animation: rise 0.75s ease 0.45s forwards;
}

.contact h2 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--brand-primary);
}

.contact .hint {
  margin: 0 0 1.1rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid color-mix(in srgb, var(--focus) 65%, transparent);
  outline-offset: 1px;
  border-color: var(--accent-mid);
}

.contact-form textarea {
  min-height: 6.5rem;
  resize: vertical;
}

.contact-form .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.25rem;
}

.contact-status {
  margin: 0;
  min-height: 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.site-footer {
  text-align: center;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: rise 0.7s ease 0.55s forwards;
}

.site-footer p {
  margin: 0.85rem 0 0;
  color: var(--ink-faint);
  font-size: 0.85rem;
}

.site-footer .built-with {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
  color: var(--ink-faint);
}

.site-footer .built-with a {
  color: var(--brand-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.site-footer .built-with a:hover {
  border-bottom-color: color-mix(in srgb, var(--brand-primary) 45%, transparent);
}

.site-footer a {
  color: var(--ink-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.site-footer a:hover {
  color: var(--brand-primary);
  border-bottom-color: var(--line);
}

.crumb {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--ink-faint);
  text-align: center;
}

.crumb a {
  color: var(--ink-muted);
  text-decoration: none;
}

.crumb a:hover {
  color: var(--brand-primary);
}

.hero--article {
  margin-bottom: 2rem;
}

.prose {
  margin: 0 0 3rem;
}

.prose h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--brand-primary);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.prose p {
  margin: 0 0 1rem;
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.prose code {
  font-size: 0.9em;
  padding: 0.1em 0.35em;
  border-radius: 0.25rem;
  background: var(--accent-soft);
  color: var(--brand-primary);
}

.table-wrap {
  margin: 0 0 0.5rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.1rem);
  -webkit-overflow-scrolling: touch;
}

.map-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.map-table th,
.map-table td {
  padding: 0.7rem 0.85rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.map-table th {
  background: #f7fafc;
  color: var(--brand-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.map-table td {
  color: var(--ink-muted);
}

.map-table td:first-child {
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}

.map-table tbody tr:last-child th,
.map-table tbody tr:last-child td {
  border-bottom: 0;
}

.map-list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.map-list li {
  margin: 0 0 0.55rem;
}

.callout {
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand-primary);
  border-radius: var(--radius);
  background: #f7fafc;
  color: var(--ink) !important;
}

.prose-cta {
  margin-top: 1.75rem;
  justify-content: flex-start;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(0.65rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand,
  .hero,
  .services,
  .contact,
  .site-footer {
    animation: none;
    opacity: 1;
  }
}
