:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --soft: #f1f1ee;
  --soft-green: #eef5ef;
  --text: #171b18;
  --muted: #555f58;
  --line: #d2d6d0;
  --brand: #1f6b3c;
  --brand-dark: #104826;
  --accent: #d9eadb;
  --focus: #e0b94b;
  --maxw: 1100px;
  --content: 850px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Trebuchet MS", "Lucida Sans Unicode", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: var(--brand-dark);
  font-weight: 700;
}

a:hover {
  color: var(--brand);
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
summary:focus {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 16px;
}

ul {
  margin-top: 0;
}

.container {
  width: min(100% - 32px, var(--maxw));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 32px, var(--content));
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: 8px 10px;
}

.skip-link:focus {
  left: 12px;
}

/* Shared legacy structure used by inner pages. */
.header,
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1100;
}

.header-inner,
.header-bar {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.site-name {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.header-left {
  display: grid;
  gap: 2px;
}

.header-phone {
  color: #c0392b;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  text-decoration: none;
  text-shadow: none;
  width: fit-content;
  font-weight: 800;
}

.nav ul,
.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav a,
.main-nav a {
  display: inline-block;
  color: #222;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 13px;
  border: 1px solid transparent;
}

.main-nav a[aria-current="page"],
.nav a:hover,
.main-nav a:hover {
  border-color: #222;
}

.call-chip {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.hero,
.hero-service {
  padding: 54px 0 62px;
}

.hero-service {
  background:
    linear-gradient(180deg, rgba(238, 245, 239, 0.9) 0%, rgba(255, 255, 255, 1) 72%),
    radial-gradient(circle at 12% 18%, rgba(217, 234, 219, 0.85), transparent 34%);
}

.hero-service h1 {
  max-width: 850px;
  margin: 0 auto 34px;
  text-align: center;
  color: #050505;
}

/* New phone-first hero (no large image) */
.hero-phone-first {
  text-align: center;
  padding: 20px 0 44px;
}

.hero-urgency {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--muted);
  margin: 0 0 16px;
}

.call-hero {
  display: inline-block;
  color: #c0392b;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  text-decoration: none;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.call-hero:hover {
  color: #a93226;
}

.hero-sub {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Legacy hero layout still used on some pages */

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.9fr);
  gap: 36px;
  align-items: start;
}

.hero-image {
  margin: 0;
  border: 5px solid #1c1c1c;
  background: #f4f4f1;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 18px 18px 0 rgba(16, 72, 38, 0.12);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-call-under {
  display: flex;
  justify-content: center;
  padding-top: 28px;
}

.quote-panel {
  border: 2px solid var(--brand-dark);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf7 100%);
  padding: 30px 28px 34px;
  min-height: 430px;
  box-shadow: 0 18px 40px rgba(16, 72, 38, 0.12);
}

.quote-kicker {
  margin-bottom: 6px;
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-panel h2 {
  color: var(--brand);
  font-size: clamp(2rem, 3.7vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.quote-phone {
  display: block;
  color: var(--brand-dark);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.1;
  margin-bottom: 20px;
  text-decoration: none;
}

.service-line {
  color: var(--muted);
  font-weight: 700;
}

/* CTA row inside service cards */
.service-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.service-link {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
}

.warning-cta {
  margin-top: 10px;
}

.solid-button,
.outline-button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 28px;
  border: 1px solid #111;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.86rem;
  font-weight: 800;
}

button.solid-button,
button.outline-button,
button.btn {
  cursor: pointer;
  font: inherit;
}

.call-now-button {
  min-height: 54px;
  padding: 15px 30px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0.01em;
  text-transform: none;
  border-width: 2px;
  box-shadow: 0 10px 20px rgba(16, 72, 38, 0.18);
}

.solid-button,
.btn-primary {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: #fff;
}

.solid-button:hover,
.btn-primary:hover {
  background: #000;
  color: #fff;
}

.solid-button span[data-phone-display],
.sticky-call span[data-phone-display] {
  margin-left: 0.35em;
  margin-right: 0.35em;
}

.outline-button,
.btn-secondary {
  background: #fff;
  color: #111;
}

.outline-button:hover,
.btn-secondary:hover {
  background: #111;
  color: #fff;
}

.intro-strip {
  padding: 42px 0 58px;
}

.intro-strip .narrow {
  text-align: center;
}

.intro-strip h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.intro-strip p {
  color: var(--muted);
}

.intro-strip .solid-button {
  margin-top: 8px;
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.warning-section {
  padding: 26px 0 18px;
}

.warning-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 32px;
  align-items: center;
  border: 1px solid #c9d0c7;
  background: linear-gradient(135deg, #fff9e9 0%, #eef5ef 100%);
  padding: clamp(22px, 4vw, 36px);
}

.warning-card p:last-child {
  margin-bottom: 0;
}

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

.warning-list li {
  border: 1px solid rgba(16, 72, 38, 0.22);
  background: rgba(255, 255, 255, 0.78);
  padding: 13px 14px;
  font-weight: 900;
}

.call-steps-section {
  padding: 52px 0 34px;
  background: #fbfbf8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

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

.step-grid article {
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px;
}

.step-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 900;
}

.step-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.call-steps-cta {
  margin: 26px 0 0;
  text-align: center;
}

.service-rows {
  padding: 42px 0 18px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.85fr);
  gap: 40px;
  align-items: center;
  margin: 0 0 78px;
  padding: 22px;
  border: 1px solid rgba(210, 214, 208, 0.85);
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 27, 24, 0.06);
}

.service-row-reverse {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.25fr);
}

.service-row-reverse .row-image,
.service-row-reverse .service-icon {
  order: 2;
}

.service-row-reverse .row-copy {
  order: 1;
}

.row-image {
  margin: 0;
  background: var(--soft);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #111;
}

.row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-row:nth-child(even) .row-image img {
  object-position: center;
}

.service-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 234, 219, 0.95), transparent 34%),
    linear-gradient(135deg, #f8f7ef 0%, #e7eee8 100%);
  color: rgba(16, 72, 38, 0.22);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.service-icon-word {
  gap: 4px;
  color: var(--brand-dark);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-icon-word span {
  color: rgba(16, 72, 38, 0.58);
  font-size: 0.62em;
  letter-spacing: 0.22em;
}

.service-icon-word strong {
  font-size: 1em;
}

.row-copy h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  margin-bottom: 14px;
  color: var(--brand-dark);
}

.row-copy p {
  color: #333;
}

.common-section {
  padding: 46px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 40px;
  align-items: start;
}

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

.problem-list li {
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 14px;
  font-weight: 800;
}

.when-section,
.final-call {
  padding: 60px 0;
  text-align: center;
}

.when-section p,
.final-call p {
  color: #333;
}

.callback-section {
  padding: 58px 0;
  background: var(--soft-green);
  border-top: 1px solid var(--line);
}

.callback-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.callback-card form {
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px;
}

.areas-band {
  padding: 64px 0;
  background: #e9e9e7;
  text-align: center;
}

.area-list {
  width: min(100%, 760px);
  margin: 18px auto 0;
  padding: 0;
  list-style-position: inside;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 64px;
  text-align: left;
}

.area-list li {
  font-weight: 800;
  text-decoration: underline;
}

.faq-section {
  padding: 58px 0 52px;
}

.faq-section h2 {
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.faq-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq-list details,
.faq details {
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  margin: 0;
  background: transparent;
}

.faq-list details:last-child,
.faq details:last-child {
  border-bottom: 0;
}

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

.faq-list p,
.faq p {
  margin: 12px 0 0 22px;
  color: var(--muted);
}

.final-call {
  border-top: 1px solid var(--line);
}

.footer {
  margin-top: 0;
  padding: 54px 0 100px;
  background: #efefed;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 36px;
}

.footer h2 {
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.footer p {
  margin-bottom: 10px;
  color: #333;
}

.footer-disclaimer {
  font-size: 0.95rem;
}

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: none;
  justify-content: center;
  background: #0f3f23;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.22);
}

.sticky-call a {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 520px);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: #1f6b3c;
  letter-spacing: 0.01em;
}

/* Inner page compatibility. */
.section {
  margin: 28px auto;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px;
}

.hero-grid,
.grid-2,
.grid-3 {
  display: grid;
  gap: 20px;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

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

.list-clean {
  padding-left: 20px;
}

.support-page {
  padding-bottom: 56px;
}

.support-hero {
  padding: 46px 0 30px;
  text-align: center;
}

.support-hero h1 {
  max-width: 850px;
  margin: 0 auto 20px;
}

.support-copy {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 26px 0 34px;
}

.support-copy h2 {
  margin-top: 34px;
}

.support-copy h2:first-child {
  margin-top: 0;
}

.support-copy ul {
  padding-left: 22px;
  margin-bottom: 24px;
}

.support-copy li {
  margin-bottom: 7px;
}

.support-copy .callout {
  border-left: 4px solid var(--brand);
  background: var(--soft-green);
  padding: 16px 18px;
  margin: 22px 0;
  font-weight: 800;
}

.support-links-section {
  padding: 52px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfbf8;
}

.support-links-section h2 {
  text-align: center;
}

.support-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.support-link-grid a {
  min-height: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px;
  text-decoration: none;
}

.support-link-grid span {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.9rem;
  margin-top: 6px;
}

.notice {
  border-left: 4px solid var(--focus);
  background: #fff9e9;
  padding: 12px 14px;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-top: 16px;
}

.img-frame,
.media-card {
  margin: 16px 0 0;
  border: 1px solid var(--line);
  background: var(--soft);
  overflow: hidden;
}

.img-frame-hero,
.img-frame-16x9,
.media-card:not(.media-map) {
  aspect-ratio: 16 / 9;
  max-height: 430px;
}

.img-frame-4x3 {
  aspect-ratio: 4 / 3;
  max-height: 420px;
}

.img-frame-map,
.media-map {
  max-width: 560px;
}

.img-cover,
.img-contain,
.img-frame > img,
.media-card > img {
  width: 100%;
  height: 100%;
}

.img-cover,
.img-frame > img,
.media-card > img {
  object-fit: cover;
}

.img-contain {
  object-fit: contain;
  background: var(--soft);
}

form {
  display: grid;
  gap: 12px;
}

label {
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #aab3aa;
  padding: 10px;
  font: inherit;
}

textarea {
  min-height: 120px;
}

@media (min-width: 760px) {
  .hero-grid,
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .header-bar,
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 0;
  }

  .nav ul,
  .main-nav ul {
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
  }

  .nav a,
  .main-nav a {
    padding: 8px 10px;
  }

  .hero-layout,
  .service-row,
  .service-row-reverse,
  .two-column,
  .warning-card,
  .step-grid,
  .callback-card,
  .support-link-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-row-reverse .row-image,
  .service-row-reverse .service-icon,
  .service-row-reverse .row-copy {
    order: initial;
  }

  .quote-panel {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
    padding-bottom: 82px;
  }

  .container,
  .narrow {
    width: min(100% - 24px, var(--maxw));
  }

  .hero-service {
    padding: 30px 0 36px;
  }

  .hero-service h1 {
    margin-bottom: 24px;
  }

  .hero-layout,
  .service-row {
    gap: 18px;
  }

  .hero-image {
    border-width: 3px;
    box-shadow: 10px 10px 0 rgba(16, 72, 38, 0.12);
  }

  .outline-button,
  .solid-button,
  .btn {
    width: 100%;
    text-align: center;
  }

  .intro-strip,
  .when-section,
  .final-call,
  .faq-section,
  .areas-band {
    padding: 38px 0;
  }

  .service-row {
    margin-bottom: 44px;
    padding: 14px;
  }

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

  .service-icon {
    min-height: 150px;
  }

  .footer {
    padding-bottom: 118px;
  }

  .sticky-call {
    display: flex;
  }
}
