:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5a675f;
  --line: #dce5df;
  --paper: #ffffff;
  --wash: #eef7f4;
  --blue: #1f6f8b;
  --blue-dark: #124c61;
  --green: #2f7c5a;
  --gold: #c7983f;
  --shadow: 0 18px 50px rgba(24, 40, 34, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-dark);
  color: #fff;
  font-weight: 800;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.nav-links a,
.phone-link,
.service-row a,
.footer a {
  text-decoration: none;
}

.nav-links a:hover,
.phone-link:hover,
.service-row a:hover {
  color: var(--blue-dark);
}

.phone-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--blue-dark);
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr) minmax(320px, 430px);
  gap: clamp(20px, 3vw, 38px);
  align-items: stretch;
  padding: clamp(24px, 5vw, 72px) clamp(18px, 4vw, 54px) 36px;
}

.hero-media {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img,
.service-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.18;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.final-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 12px 16px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
.button.submit {
  background: var(--blue);
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue-dark);
}

.mini-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.mini-proof span,
.signal-strip span,
.area-grid article,
.steps li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.mini-proof span {
  padding: 12px;
  color: var(--blue-dark);
  font-weight: 800;
}

.quote-panel {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 22px;
}

.panel-heading p,
.fine-print,
.section-heading p,
.service-row p,
.area-grid span,
.steps span {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9d6cf;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 11px 12px;
}

textarea {
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -10000px;
}

.fine-print {
  margin: 12px 0 0;
  font-size: 0.82rem;
}

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 0 clamp(18px, 4vw, 54px) 46px;
}

.signal-strip span {
  padding: 10px 14px;
  color: var(--blue-dark);
  font-weight: 800;
}

.section {
  padding: clamp(42px, 6vw, 86px) clamp(18px, 4vw, 54px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px;
}

.service-row img {
  aspect-ratio: 1.55;
  border-radius: 6px;
}

.service-row a {
  color: var(--blue-dark);
  font-weight: 800;
}

.compact-section,
.process-section {
  background: var(--wash);
}

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

.area-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.area-grid strong {
  color: var(--blue-dark);
  font-size: 1.1rem;
}

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

.steps li {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.final-cta {
  justify-content: space-between;
  margin: 0 clamp(18px, 4vw, 54px) clamp(42px, 6vw, 72px);
  border-radius: var(--radius);
  background: var(--blue-dark);
  color: #fff;
  padding: clamp(24px, 4vw, 42px);
}

.final-cta .eyebrow {
  color: #b9e4d6;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 24px clamp(18px, 4vw, 54px);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: clamp(38px, 7vw, 88px) clamp(18px, 4vw, 54px);
}

.page-hero h1 {
  max-width: 880px;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.page-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-photo img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
}

.article-body {
  display: grid;
  gap: 18px;
}

.article-card,
.info-panel,
.link-grid a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.article-card {
  padding: clamp(18px, 3vw, 28px);
}

.article-card p,
.article-card li,
.info-panel p {
  color: var(--muted);
}

.article-card ul {
  margin: 0;
  padding-left: 20px;
}

.info-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  padding: 20px;
  box-shadow: 0 12px 34px rgba(24, 40, 34, 0.1);
}

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

.link-grid a {
  padding: 16px;
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
}

.notice-band {
  margin-top: 18px;
  border-left: 4px solid var(--gold);
  background: #fff8e8;
  padding: 14px 16px;
  color: #594622;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-copy {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}

@media (max-width: 860px) {
  .topbar {
    grid-template-columns: 1fr;
  }

  .nav-links {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .service-row,
  .page-hero,
  .content-grid,
  .link-grid,
  .area-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    grid-row: 2;
  }

  .hero-media {
    grid-row: 3;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-media img {
    aspect-ratio: 1.25;
  }

  .info-panel {
    position: static;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: 2.35rem;
  }

  .mini-proof {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    padding: 18px;
  }
}
