:root {
  --ink: #111827;
  --muted: #4b5563;
  --line: #d8dee8;
  --paper: #f7f8fa;
  --white: #ffffff;
  --yellow: #f6c343;
  --yellow-strong: #d99a00;
  --green: #126b55;
  --blue: #173b62;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--yellow);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--ink);
  color: var(--yellow);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-call {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.68) 48%, rgba(17, 24, 39, 0.28) 100%),
    linear-gradient(0deg, rgba(17, 24, 39, 0.58), rgba(17, 24, 39, 0.04));
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 62px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 56px;
  line-height: 1.02;
}

h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.12;
}

h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 670px;
  margin: 22px 0 0;
  color: #e8edf5;
  font-size: 20px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 6px;
  border: 2px solid transparent;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
}

.button-primary:hover,
.header-call:hover {
  background: #ffd45c;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.hero-proof li {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.09);
  color: #f8fafc;
  font-weight: 700;
}

.trust-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -36px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 6px;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2 {
  color: var(--ink);
}

.two-column,
.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: stretch;
}

.two-column p,
.zones p {
  margin-top: 0;
  color: var(--muted);
  font-size: 18px;
}

.local-panel {
  padding: 30px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.local-panel span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
}

.local-panel strong {
  display: block;
  font-size: 28px;
  line-height: 1.15;
}

.local-panel p {
  margin: 18px 0 0;
  color: #dbe4ef;
}

.service-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.service-card span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #e9f4ef;
  color: var(--green);
  font-weight: 800;
}

.service-card p,
.review-card blockquote,
.faq-list p {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  min-height: 210px;
  padding: 24px;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
}

.steps li::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-weight: 800;
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 10px;
  font-size: 20px;
}

.steps span {
  color: #e5edf7;
}

.zones {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.zones ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.zones li {
  padding: 12px 14px;
  border-left: 4px solid var(--yellow);
  background: #fff8e8;
  font-weight: 700;
}

.map-embed {
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #dbe4ef;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.review-card {
  margin: 0;
}

.review-card blockquote {
  margin: 0 0 18px;
  font-size: 18px;
}

.review-card figcaption {
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin-bottom: 0;
}

.cta-band {
  width: min(1180px, calc(100% - 32px));
  margin: 92px auto 0;
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p:last-child {
  margin-bottom: 0;
  color: #dbe4ef;
}

.cta-band .button-secondary {
  border-color: rgba(255, 255, 255, 0.5);
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 96px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 6px 0 0;
}

.mobile-call {
  display: none;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .trust-strip,
  .two-column,
  .map-layout,
  .service-grid,
  .review-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .steps li {
    min-height: 0;
  }

  .cta-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .header-inner {
    width: min(100% - 24px, 1180px);
    min-height: 66px;
  }

  .brand small,
  .header-call {
    display: none;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-content {
    width: min(100% - 24px, 1180px);
    padding: 56px 0 48px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .hero-proof li {
    width: 100%;
  }

  .trust-strip,
  .section,
  .cta-band,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding-top: 72px;
  }

  .local-panel,
  .service-card,
  .review-card,
  .zones,
  .cta-band {
    padding: 22px;
  }

  .map-embed {
    min-height: 320px;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .mobile-call {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12;
    display: block;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
  }

  .mobile-call a {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
  }
}
