:root {
  color-scheme: light;
  --ink: #18312f;
  --ink-soft: #48605d;
  --paper: #fbfaf6;
  --white: #ffffff;
  --sage: #d8e5dc;
  --sage-deep: #497568;
  --clay: #b95e45;
  --sun: #f4c36a;
  --line: rgba(24, 49, 47, 0.16);
  --shadow: 0 22px 70px rgba(24, 49, 47, 0.14);
  --radius: 8px;
  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;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.inner-page .site-header {
  background: rgba(251, 250, 246, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(24, 49, 47, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-weight: 800;
  font-size: 1.25rem;
}

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

.brand strong {
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  opacity: 0.78;
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 700;
}

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

.nav-phone {
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(18px, 6vw, 76px) 72px;
  color: var(--white);
  overflow: hidden;
}

.page-hero {
  padding: 142px clamp(18px, 6vw, 76px) 66px;
  background: var(--ink);
  color: var(--white);
}

.page-hero .hero-copy {
  max-width: 820px;
}

.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(16, 39, 36, 0.9) 0%, rgba(16, 39, 36, 0.7) 38%, rgba(16, 39, 36, 0.18) 72%),
    linear-gradient(0deg, rgba(16, 39, 36, 0.5), rgba(16, 39, 36, 0.08));
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--sun);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 6vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--clay);
  color: var(--white);
}

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

.trust-row {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.93rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sun);
}

section:not(.hero) {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 6vw, 76px);
}

.intro-band,
.free-banner,
.local-seo,
.about,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.free-banner {
  background: var(--sun);
  color: var(--ink);
  align-items: center;
  border-bottom: 1px solid rgba(24, 49, 47, 0.12);
}

.free-banner .section-kicker {
  color: var(--sage-deep);
}

.free-banner p {
  margin: 0;
  color: rgba(24, 49, 47, 0.82);
  font-weight: 650;
}

.intro-band p:last-child,
.section-heading p,
.local-copy p,
.about-content p,
.contact-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

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

.section-action {
  margin-top: 26px;
}

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

.steps article,
.service-grid article,
.local-panel,
.page-panel,
.lead-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(24, 49, 47, 0.06);
}

.steps article,
.service-grid article {
  padding: 24px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--sage-deep);
  font-weight: 900;
}

.steps p,
.service-grid p,
.about-points span,
.local-panel p,
.form-note,
.legal {
  margin: 0;
  color: var(--ink-soft);
}

.services {
  background: #f2f6f0;
}

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

.article-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(24, 49, 47, 0.06);
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-card div {
  padding: 22px;
}

.article-card a {
  text-decoration: none;
}

.article-card p {
  color: var(--ink-soft);
}

.article-meta {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.article-body {
  max-width: 850px;
}

.article-body img {
  width: 100%;
  margin-bottom: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-body h2 {
  margin-top: 34px;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.article-body a {
  color: var(--sage-deep);
  font-weight: 800;
}

.article-body ul {
  padding-left: 22px;
}

.inline-cta,
.article-cta {
  margin: 30px 0;
  padding: 24px;
  border-radius: var(--radius);
  background: #f2f6f0;
  border: 1px solid var(--line);
}

.inline-cta strong,
.article-cta strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.12rem;
}

.inline-cta p,
.article-cta p {
  margin: 0 0 16px;
}

.article-cta {
  margin-top: 46px;
}

.article-cta .lead-form {
  margin-top: 18px;
  box-shadow: none;
}

.article-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.article-sidebar .page-panel {
  background: #f2f6f0;
}

.local-seo {
  background: var(--ink);
  color: var(--white);
}

.local-seo .section-kicker,
.local-seo p {
  color: rgba(255, 255, 255, 0.78);
}

.local-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.local-panel strong {
  display: block;
  color: var(--sun);
  font-size: 1.1rem;
}

.local-panel a {
  display: inline-block;
  margin-top: 16px;
  color: var(--white);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.page-panel {
  padding: 28px;
}

.page-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.page-panel p + p {
  margin-top: 12px;
}

.about-points {
  display: grid;
  gap: 14px;
}

.about-points div {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points strong {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.contact {
  background: var(--sage);
}

.contact-methods {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-weight: 800;
}

.contact-methods a {
  overflow-wrap: anywhere;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(24, 49, 47, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 650;
  color: var(--ink-soft);
  line-height: 1.4;
}

.consent-checkbox input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
}

.policy-content {
  max-width: 920px;
}

.policy-content h2 {
  margin-top: 34px;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.policy-content p,
.policy-content li {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(244, 195, 106, 0.5);
  border-color: var(--sage-deep);
}

.lead-form .button {
  width: 100%;
  border: 0;
}

.form-note {
  font-size: 0.84rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  padding: 34px clamp(18px, 6vw, 76px);
  background: #102724;
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.legal {
  grid-column: 1 / -1;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-phone {
    border-radius: var(--radius);
  }

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 39, 36, 0.9) 0%, rgba(16, 39, 36, 0.68) 68%, rgba(16, 39, 36, 0.25) 100%),
      linear-gradient(0deg, rgba(16, 39, 36, 0.6), rgba(16, 39, 36, 0.16));
  }

  .intro-band,
  .free-banner,
  .local-seo,
  .about,
  .contact,
  .steps,
  .service-grid,
  .article-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .site-header {
    padding: 13px 16px;
  }

  .hero {
    min-height: 88vh;
    padding: 112px 18px 42px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }

  .hero-actions .button,
  .form-row {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .trust-row {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
