:root {
  --ink: #13272d;
  --muted: #587073;
  --paper: #fbfaf4;
  --panel: #ffffff;
  --teal: #007c83;
  --deep: #073f49;
  --coral: #ff6b4a;
  --mint: #d5f5e8;
  --line: rgba(19, 39, 45, .14);
  --shadow: 0 22px 70px rgba(7, 63, 73, .18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: #fff;
  padding: .7rem 1rem;
  z-index: 20;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 244, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
}
.brand {
  text-decoration: none;
  display: grid;
  gap: 2px;
}
.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.brand-sub {
  color: var(--muted);
  font-size: .82rem;
}
.nav {
  display: flex;
  gap: 20px;
  font-size: .9rem;
  color: var(--muted);
}
.nav a,
.call-pill,
.button,
.text-link,
.site-footer a {
  text-decoration: none;
}
.nav a:hover,
.text-link:hover,
.site-footer a:hover { color: var(--teal); }
.call-pill {
  background: var(--deep);
  color: #fff;
  padding: .8rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(7, 63, 73, .18);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(24px, 1fr) minmax(0, 690px) minmax(320px, 420px) minmax(24px, 1fr);
  gap: 38px;
  align-items: center;
  padding: 78px 0 90px;
  overflow: hidden;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 250, 244, .96) 0%, rgba(251, 250, 244, .86) 42%, rgba(251, 250, 244, .22) 100%),
    linear-gradient(180deg, rgba(7, 63, 73, .08), rgba(7, 63, 73, .32));
}
.hero-content {
  position: relative;
  grid-column: 2;
  max-width: 690px;
  min-width: 0;
}
.eyebrow,
.section-kicker,
.card-kicker {
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 850;
  font-size: .78rem;
  letter-spacing: .08em;
  margin: 0 0 12px;
}
h1, h2, h3, p { margin-top: 0; }
h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  letter-spacing: 0;
}
h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
  max-width: 12ch;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  margin-bottom: 18px;
}
h3 {
  font-size: 1.1rem;
  line-height: 1.25;
  margin-bottom: 8px;
}
.hero-copy {
  font-size: 1.08rem;
  max-width: 720px;
  color: #294449;
  margin-bottom: 28px;
}
.hero-actions,
.problem-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .88rem 1.18rem;
  font-weight: 850;
}
.button.primary {
  background: var(--coral);
  color: #240b05;
  box-shadow: 0 18px 40px rgba(255, 107, 74, .28);
}
.button.secondary {
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  color: var(--deep);
}
.problem-chips { margin-top: 26px; }
.problem-chips span {
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .56rem .78rem;
  font-weight: 750;
  color: var(--deep);
}
.quote-card {
  position: relative;
  grid-column: 3;
  min-width: 0;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.quote-card h2 {
  font-size: 2rem;
  max-width: 11ch;
}
.lead-form { display: grid; gap: 13px; }
.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}
.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: .75rem .82rem;
  color: var(--ink);
  font: inherit;
}
.lead-form button {
  min-height: 50px;
  border: 0;
  border-radius: 6px;
  background: var(--deep);
  color: #fff;
  font-weight: 850;
  font: inherit;
  cursor: pointer;
}
.form-note {
  color: var(--muted);
  font-size: .88rem;
  margin: 0;
}
.form-note a { color: var(--teal); font-weight: 850; }

.trust-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -46px auto 0;
  position: relative;
  z-index: 2;
  background: var(--deep);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.trust-strip div {
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong,
.trust-strip span { display: block; }
.trust-strip strong { font-size: 1rem; }
.trust-strip span { color: rgba(255, 255, 255, .72); font-size: .9rem; margin-top: 4px; }

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 58px;
  align-items: start;
}
.intro-grid p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}
.symptoms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 0;
}
.symptoms article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.symptoms span {
  color: var(--coral);
  font-weight: 900;
  font-size: .8rem;
}
.symptoms p,
.service-list p,
.proof-copy p,
.areas p,
.faq p,
.contact-panel p,
.site-footer p {
  color: var(--muted);
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: stretch;
}
.feature-copy {
  background: var(--mint);
  border-radius: 8px;
  padding: 34px;
}
.feature-copy h2 { font-size: clamp(2rem, 3vw, 3.4rem); }
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.service-list article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.photo-proof {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: stretch;
}
.photo-proof img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-main,
.proof-copy,
.photo-proof figure {
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
}
.photo-main { min-height: 520px; }
.proof-copy {
  background: var(--deep);
  color: #fff;
  padding: 34px;
  display: grid;
  align-content: center;
}
.proof-copy .section-kicker { color: #7ee8cd; }
.proof-copy p,
.proof-copy li { color: rgba(255, 255, 255, .78); }
.proof-copy ul {
  padding-left: 1.15rem;
  margin: 0 0 22px;
}
.text-link {
  color: #fff;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.photo-proof figure {
  min-height: 260px;
  position: relative;
  background: #fff;
}
.photo-proof figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
  border-radius: 999px;
  padding: .55rem .75rem;
  font-weight: 850;
  font-size: .86rem;
}

.areas {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 38px;
  align-items: start;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.area-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .9rem 1rem;
  font-weight: 850;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 20px;
  align-items: stretch;
}
.map-card,
.contact-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(19, 39, 45, .08);
}
.map-card {
  position: relative;
  min-height: 420px;
  background:
    linear-gradient(135deg, rgba(213, 245, 232, .92), rgba(255, 255, 255, .82)),
    repeating-linear-gradient(45deg, rgba(0, 124, 131, .18) 0 2px, transparent 2px 34px);
}
.map-fallback {
  position: absolute;
  inset: 24px;
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 8px;
  z-index: 3;
  pointer-events: none;
}
.map-fallback span {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 900;
}
.map-fallback strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.05;
  max-width: 13ch;
}
.map-fallback a {
  pointer-events: auto;
  color: var(--deep);
  font-weight: 900;
}
.map-card iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 420px;
  height: 100%;
  border: 0;
  display: block;
}
.contact-panel {
  padding: 32px;
}
address {
  font-style: normal;
  color: var(--muted);
  margin-bottom: 18px;
}
.contact-panel a { color: var(--teal); font-weight: 850; }

.faq {
  display: grid;
  grid-template-columns: minmax(250px, .78fr) minmax(0, 1.22fr);
  gap: 38px;
}
.faq-list {
  display: grid;
  gap: 10px;
}
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}
summary {
  cursor: pointer;
  font-weight: 900;
}
details p {
  margin: 12px 0 0;
}

.final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 90px;
  background: linear-gradient(135deg, var(--teal), var(--deep));
  color: #fff;
  border-radius: 8px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}
.final-cta .section-kicker { color: #9af0d4; }
.final-cta h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); max-width: 16ch; }

.site-footer {
  background: #082f36;
  color: #fff;
  padding: 34px max(16px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
}
.site-footer p { max-width: 620px; margin: 8px 0 0; }
.site-footer div:last-child {
  display: grid;
  gap: 6px;
  justify-items: end;
  color: rgba(255, 255, 255, .74);
}
.site-footer a { color: #fff; font-weight: 800; }
.mobile-bar { display: none; }

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }
  .nav { display: none; }
  .hero {
    min-height: unset;
    grid-template-columns: minmax(0, 1fr);
    padding: 72px 18px 34px;
    column-gap: 0;
    row-gap: 22px;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251, 250, 244, .94) 0%, rgba(251, 250, 244, .78) 52%, rgba(7, 63, 73, .55) 100%);
  }
  .hero-content,
  .quote-card {
    grid-column: 1;
    width: 100%;
    max-width: 100%;
  }
  h1 {
    font-size: clamp(2.35rem, 10.2vw, 3.7rem);
    max-width: 10ch;
    overflow-wrap: normal;
  }
  .hero-copy { font-size: 1rem; }
  .quote-card { margin-top: 16px; }
  .trust-strip,
  .intro-grid,
  .symptoms,
  .service-feature,
  .service-list,
  .photo-proof,
  .areas,
  .area-grid,
  .map-section,
  .faq,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .trust-strip { margin-top: 0; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .photo-main { min-height: 340px; }
  .section { padding: 64px 0; }
  .final-cta { align-items: start; }
  .site-footer div:last-child { justify-items: start; }
}

@media (max-width: 640px) {
  body { padding-bottom: 70px; }
  .header-inner { min-height: 70px; }
  .brand-name { font-size: 1.06rem; }
  .brand-sub { font-size: .74rem; }
  .call-pill { display: none; }
  .hero { padding-top: 52px; }
  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }
  .hero-actions .button { width: 100%; min-width: 0; }
  .hero-copy { max-width: 100%; }
  .problem-chips span { font-size: .86rem; }
  .quote-card,
  .feature-copy,
  .proof-copy,
  .contact-panel,
  .final-cta { padding: 24px; }
  .quote-card h2 { font-size: 1.65rem; }
  .symptoms article,
  .service-list article { padding: 20px; }
  .area-grid { grid-template-columns: 1fr; }
  .map-card iframe { min-height: 320px; }
  .mobile-bar {
    position: fixed;
    z-index: 12;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -18px 45px rgba(19, 39, 45, .14);
  }
  .mobile-bar a {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    font-size: .9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--deep);
  }
  .mobile-bar a:first-child {
    background: var(--coral);
    color: #240b05;
  }
}
