:root {
  color-scheme: light;
  --blue: #153d8a;
  --blue-dark: #0c285f;
  --ink: #182033;
  --muted: #596273;
  --surface: #f5f7fb;
  --line: #dce2ec;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.7;
}
a { color: var(--blue); }
img { max-width: 100%; height: auto; }
.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .75rem; color: var(--blue-dark); font-weight: 800; text-decoration: none; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.nav-links { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.nav-links a { color: var(--ink); font-weight: 650; text-decoration: none; }
.nav-links a:hover { color: var(--blue); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .78rem 1.15rem;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--blue);
  font-weight: 750;
  text-decoration: none;
}
.button:hover { background: var(--blue-dark); }
.hero { padding: clamp(3.5rem, 8vw, 7rem) 0; background: linear-gradient(135deg, #f8faff 0%, #e8eef9 100%); }
.eyebrow { color: var(--blue); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; font-size: .82rem; }
h1, h2, h3 { color: var(--blue-dark); font-family: Georgia, "Times New Roman", serif; line-height: 1.18; }
h1 { max-width: 850px; margin: .75rem 0 1rem; font-size: clamp(2.25rem, 6vw, 4.4rem); }
h2 { margin-top: 0; font-size: clamp(1.65rem, 3vw, 2.35rem); }
h3 { font-size: 1.3rem; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.crumbs { margin-bottom: 1.5rem; color: var(--muted); font-size: .93rem; }
.crumbs a { text-decoration: none; }
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section.alt { background: var(--surface); }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { padding: 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 8px 30px rgba(17,38,80,.06); }
.card p:last-child { margin-bottom: 0; }
.service-link { display: block; height: 100%; color: inherit; text-decoration: none; }
.service-link:hover { border-color: #aabbdc; transform: translateY(-2px); }
.service-link span { color: var(--blue); font-weight: 800; }
.checklist { padding-left: 1.25rem; }
.checklist li { margin-bottom: .65rem; }
.callout { padding: 1.75rem; border-radius: 18px; background: var(--blue); color: var(--white); }
.callout h2, .callout h3 { color: var(--white); }
.callout .button { color: var(--blue-dark) !important; background: var(--white); }
.details { border-top: 1px solid var(--line); padding: 1rem 0; }
.details summary { cursor: pointer; color: var(--blue-dark); font-weight: 750; }
.footer { padding: 2.5rem 0; color: #e7edf9; background: var(--blue-dark); }
.footer a { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 2rem; }
.fine { color: var(--muted); font-size: .92rem; }
address { font-style: normal; }
@media (max-width: 760px) {
  .nav { align-items: flex-start; padding: .75rem 0; }
  .nav-links { justify-content: flex-end; gap: .6rem 1rem; }
  .nav-links a:not(.button) { display: none; }
  .grid, .grid.three, .footer-grid { grid-template-columns: 1fr; }
}
