:root {
  color-scheme: light;
  --ink: #18212f;
  --muted: #5e6b7a;
  --line: #dbe2ea;
  --paper: #f7f9fb;
  --panel: #ffffff;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --warm: #f3b95f;
  --shadow: 0 18px 50px rgba(24, 33, 47, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
}

a.brand {
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.65rem 0.95rem;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  background:
    linear-gradient(90deg, rgba(24, 33, 47, 0.88), rgba(24, 33, 47, 0.58)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='640' viewBox='0 0 1200 640'%3E%3Crect width='1200' height='640' fill='%238aa39f'/%3E%3Cpath d='M0 435 C180 390 285 450 430 405 C570 362 690 300 845 330 C995 360 1065 315 1200 260 L1200 640 L0 640 Z' fill='%23e7eceb'/%3E%3Cpath d='M0 500 C210 455 370 520 560 470 C710 430 820 480 1000 430 C1105 400 1145 405 1200 390 L1200 640 L0 640 Z' fill='%23ffffff' opacity='.55'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4.6rem 1.25rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 2rem;
  align-items: end;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--warm);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.quote-panel {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.quote-panel h2 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.quote-panel p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  border-radius: 6px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.primary-button:hover {
  background: var(--accent-dark);
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 1.5rem;
  align-items: start;
}

.section {
  margin-top: 2.5rem;
}

.section h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.12;
}

.lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.check-list,
.area-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.hub-list,
.hub-city-list,
.compact-link-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 2rem;
  padding: 0;
  list-style: none;
}

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

.hub-list li,
.hub-city-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 0.9rem 1rem;
}

.hub-list a,
.hub-city-list a,
.compact-link-list a {
  font-weight: 800;
  text-decoration: none;
}

.hub-list span,
.hub-city-list span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.compact-link-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem 1rem;
}

.compact-link-list li {
  min-width: 0;
}

.compact-link-list a {
  color: var(--accent-dark);
  overflow-wrap: anywhere;
}

.hub-hero {
  max-width: 840px;
}

.check-list li,
.area-list li,
.step,
.faq {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 0.9rem 1rem;
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.6rem;
  border-radius: 999px;
  background: var(--accent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: step;
}

.step {
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  margin-bottom: 0.7rem;
  border-radius: 50%;
  background: var(--warm);
  color: var(--ink);
  font-weight: 900;
}

.faq + .faq {
  margin-top: 0.75rem;
}

.faq h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.faq p,
.step p {
  margin: 0;
  color: var(--muted);
}

.service-card {
  position: sticky;
  top: 1rem;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  padding: 1rem;
}

.service-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.fine-print {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-inner,
  .intro-grid,
  .steps,
  .hub-list,
  .hub-city-list,
  .compact-link-list {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 3.2rem;
  }

  .phone-link {
    width: 100%;
  }

  .service-card {
    position: static;
  }
}
