:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #586574;
  --line: #d8e0e6;
  --paper: #ffffff;
  --soft: #f5f8fa;
  --field: #eef5f4;
  --brand: #1d6a73;
  --brand-dark: #12464d;
  --accent: #6f8f3f;
  --warn: #8a5a20;
  --focus: #225bd8;
  --shadow: 0 12px 28px rgba(23, 33, 43, 0.08);
}

* { box-sizing: border-box; }

html {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

body { margin: 0; }

a { color: var(--brand-dark); }
a:hover { color: var(--accent); }
img, svg { max-width: 100%; height: auto; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 10;
  background: var(--brand-dark);
  color: #fff;
  padding: 0.75rem 1rem;
}

.skip-link:focus { top: 1rem; }

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 2px 10px rgba(23, 33, 43, 0.04);
  position: sticky;
  top: 0;
  z-index: 4;
}

.nav-wrap, .section, .footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.15;
}

.brand span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 6px;
  padding: 0.65rem 0.8rem;
  color: var(--ink);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.94rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 6px;
  padding: 0.45rem 0.58rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--field);
  color: var(--brand-dark);
}

.nav-links .phone-cta {
  margin-left: 0.25rem;
  padding: 0.35rem 0.55rem;
  min-height: 36px;
  border-color: #c8d3d7;
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

.nav-links .phone-cta small {
  display: none;
}

.nav-links .button {
  margin-left: 0.2rem;
  padding: 0.72rem 0.92rem;
  color: #fff;
}

.nav-links .button:hover,
.nav-links .button:focus {
  background: var(--brand-dark);
  color: #fff;
}

.button, button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  padding: 0.78rem 1rem;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover { background: var(--brand-dark); color: #fff; }
.button.secondary { background: var(--field); color: var(--brand-dark); }
.button.secondary:hover { background: #dfeceb; color: var(--brand-dark); }

.phone-cta {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px dashed #98a9ad;
  border-radius: 6px;
  padding: 0.72rem 0.85rem;
  color: var(--brand-dark);
  font-weight: 800;
  background: #fff;
  text-decoration: none;
  line-height: 1.2;
}

.phone-cta small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.phone-block {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
}

.phone-block .phone-cta {
  width: fit-content;
  max-width: 100%;
}

.hero {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.hero .section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 3.25rem;
}

.hero-media {
  display: grid;
  gap: 1rem;
}

.visual {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brand-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

h1, h2, h3 {
  line-height: 1.16;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.15rem, 6vw, 4.2rem); max-width: 12ch; }
.page-title h1 { max-width: 820px; }
h2 { font-size: clamp(1.5rem, 4vw, 2.35rem); }
h3 { font-size: 1.18rem; }
p { margin: 0 0 1rem; }

.lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 700px;
}

.hero-actions, .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.notice {
  border-left: 4px solid var(--warn);
  background: #fff8ed;
  padding: 1rem;
  border-radius: 6px;
  color: #48341c;
}

.section { padding: 3.5rem 0; }
.section.tight { padding: 2.25rem 0; }
.page-title { background: var(--soft); border-bottom: 1px solid var(--line); }

.grid { display: grid; gap: 1rem; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 1.25rem;
}

.card p:last-child { margin-bottom: 0; }
.card a { font-weight: 800; }
.band { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.quick-list, .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.quick-list li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.6rem;
}

.quick-list li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.area-list a, .area-list span {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.steps { counter-reset: steps; }
.step { position: relative; padding-left: 3.25rem; }
.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.form { display: grid; gap: 1rem; }
.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label { display: grid; gap: 0.35rem; font-weight: 800; }
.consent { grid-template-columns: auto 1fr; align-items: start; font-weight: 700; }
.consent input { width: auto; margin-top: 0.25rem; }

input, select, textarea {
  width: 100%;
  border: 1px solid #bdc9cf;
  border-radius: 6px;
  padding: 0.78rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus, button:focus, a:focus {
  outline: 3px solid rgba(34, 91, 216, 0.25);
  outline-offset: 2px;
}

.helper { color: var(--muted); font-size: 0.92rem; }
.fine-print { color: var(--muted); font-size: 0.9rem; }

.site-footer {
  background: #12242a;
  color: #edf5f6;
  padding: 2.5rem 0;
}

.site-footer a { color: #edf5f6; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 1.5rem; }
.footer-disclosure, .footer-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 1.5rem;
  padding-top: 1rem;
}
.footer-disclosure { color: #cfdddf; font-size: 0.92rem; }
.footer-contact p { margin-bottom: 0.45rem; }
.legal main p, .legal main li { max-width: 860px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1rem 1rem;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 0.75rem 0; }
  .nav-links .phone-cta {
    align-items: flex-start;
    border: 0;
    padding: 0.15rem 0;
    margin: 0.45rem 0;
    white-space: normal;
    font-size: 0.88rem;
  }
  .nav-links .phone-cta small { display: inline; }
  .nav-links .button { margin-top: 0.5rem; }
  .hero .section, .grid.two, .grid.three, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .hero .section { padding: 3rem 0; }
  h1 { max-width: 13ch; }
}

@media (max-width: 520px) {
  .nav-wrap, .section, .footer-inner { width: min(100% - 24px, 1120px); }
  .section { padding: 2.5rem 0; }
  .hero-actions .button, .cta-row .button, .phone-block .phone-cta { width: 100%; }
}
