:root {
  --ink: #10201d;
  --muted: #4d5d59;
  --paper: #f6faf7;
  --white: #ffffff;
  --teal: #05665f;
  --teal-strong: #034843;
  --mint: #dff1ea;
  --gold: #f0c85a;
  --line: #d5e4df;
  --shadow: 0 18px 44px rgba(16, 32, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(246, 250, 247, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-strong);
  font-size: 17px;
  font-weight: 800;
}

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

.brand small {
  color: var(--muted);
  font-size: 15px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
  font-size: 16px;
}

nav a {
  text-decoration: none;
  font-weight: 700;
}

.call-button,
.secondary-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.call-button {
  color: var(--white);
  background: var(--teal-strong);
}

.secondary-button {
  color: var(--teal-strong);
  background: var(--white);
  border: 2px solid var(--teal-strong);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 250, 247, 0.98) 0%, rgba(246, 250, 247, 0.85) 44%, rgba(246, 250, 247, 0.1) 78%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 770px;
  padding: 82px clamp(22px, 5vw, 76px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.15;
}

.lead {
  max-width: 650px;
  color: #253a35;
  font-size: 23px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.quick-points {
  display: grid;
  gap: 10px;
  max-width: 690px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-points li {
  padding-left: 30px;
  position: relative;
  font-weight: 700;
}

.quick-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
}

.address-options {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 32px clamp(22px, 5vw, 76px);
  background: var(--teal);
  color: var(--white);
}

.address-options .eyebrow {
  color: var(--gold);
}

.address-options h2 {
  margin-bottom: 6px;
  font-size: clamp(28px, 3vw, 40px);
}

.address-options p {
  margin-bottom: 0;
}

.compact {
  color: var(--ink);
  background: var(--gold);
}

.section {
  padding: 76px clamp(22px, 5vw, 76px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 32, 29, 0.07);
}

.card p,
.steps p,
.notice p,
.contact-section p {
  color: var(--muted);
}

.how-section {
  background: var(--mint);
}

.steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
}

.steps span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-strong);
  font-size: 24px;
  font-weight: 900;
}

.area-section {
  background: var(--white);
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 450px);
  gap: 28px;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list li,
.problem-grid p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 800;
}

.notice {
  padding: 26px;
  border-left: 8px solid var(--gold);
  border-radius: 8px;
  background: #fff7df;
}

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

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 82px clamp(22px, 5vw, 76px);
  color: var(--white);
  background: var(--teal-strong);
}

.contact-section .eyebrow {
  color: var(--gold);
}

.contact-section p {
  color: #d9ebe7;
  font-size: 22px;
}

.large {
  min-height: 68px;
  color: var(--ink);
  background: var(--gold);
  font-size: 22px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(22px, 5vw, 76px);
  background: #0b1715;
  color: var(--white);
  padding-bottom: 96px;
}

footer p {
  margin: 0;
}

.mobile-sticky-call {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 50;
  display: none;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold);
  box-shadow: var(--shadow);
  font-size: 21px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1040px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .header-call {
    width: 100%;
  }

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

@media (max-width: 720px) {
  body {
    font-size: 18px;
  }

  .site-header {
    position: static;
  }

  nav {
    display: none;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero img {
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(246, 250, 247, 0.99) 0%, rgba(246, 250, 247, 0.9) 60%, rgba(246, 250, 247, 0.18) 100%);
  }

  .hero-content {
    padding-top: 54px;
  }

  .hero-actions,
  .address-options,
  .area-layout,
  .contact-section,
  footer {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .card-grid,
  .area-list,
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .contact-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .steps li {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-call {
    display: flex;
  }
}
