@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #f7f3eb;
  --ink: #173327;
  --muted: #607168;
  --green: #214936;
  --bamboo: #4a7a43;
  --sand: #efe5d2;
  --card: #fffdf8;
  --line: #d7d4ca;
  --accent: #dd7c35;
  --accent-ink: #2b1607;
  --radius: 8px;
  --shadow: 0 18px 50px rgb(23 51 39 / 0.12);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, system-ui, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  line-height: 1.04;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgb(215 212 202 / 0.8);
  background: rgb(247 243 235 / 0.94);
  backdrop-filter: blur(14px);
}

.brand,
.header-actions,
.main-nav,
.trust-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--green);
  color: #fffdf8;
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
}

.main-nav {
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a:hover,
.phone-link:hover,
.site-footer a:hover {
  color: var(--bamboo);
}

.header-actions {
  gap: 12px;
}

.phone-link {
  color: var(--green);
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 700;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease;
}

.button:hover {
  filter: brightness(1.04);
}

.button:active {
  transform: scale(0.98);
}

.button-accent {
  background: var(--accent);
  color: var(--accent-ink);
}

.button-primary {
  background: var(--green);
  color: #fffdf8;
}

.button-outline {
  border: 1px solid var(--line);
  color: var(--green);
}

.hero,
.section,
.content-band,
.page-hero,
.cta-band,
.site-footer {
  padding-inline: clamp(18px, 4vw, 48px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  max-width: 1280px;
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  padding-block: clamp(42px, 7vw, 90px);
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--bamboo);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
}

.intro,
.page-hero p {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgb(255 253 248 / 0.74);
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
}

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

.hero-media img {
  width: 100%;
  height: min(70svh, 720px);
  object-fit: cover;
}

.content-band,
.sand {
  border-block: 1px solid var(--line);
  background: var(--sand);
}

.content-band {
  padding-block: 58px;
}

.two-col,
.card-grid,
.area-grid,
.contact-grid {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  gap: 22px;
}

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

.feature,
.card,
.price-card,
.area-card,
.quote-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: clamp(22px, 4vw, 32px);
}

.feature h2,
.section-heading h2,
.cta-band h2,
.contact-grid h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.feature p,
.card p,
.price-card p,
.section-heading p,
.cta-band p,
.contact-list {
  color: var(--muted);
}

.section {
  padding-block: clamp(58px, 8vw, 92px);
}

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

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

.card-grid.services,
.card-grid.pricing.full {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.link-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
}

.link-card h3,
.price-name {
  font-size: 1.35rem;
  font-weight: 700;
}

.link-card span {
  margin-top: auto;
  color: var(--bamboo);
  font-weight: 800;
}

.price-card.featured {
  border-color: var(--green);
  background: var(--green);
  color: #fffdf8;
}

.price-card.featured p,
.price-card.featured .unit {
  color: rgb(255 253 248 / 0.78);
}

.price {
  margin: 14px 0 0;
  color: inherit;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.05;
}

.unit {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.price-card li {
  margin: 10px 0;
  color: inherit;
  line-height: 1.55;
}

.center {
  margin-top: 32px;
  text-align: center;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

summary {
  cursor: pointer;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
}

details p {
  color: var(--muted);
}

.page-hero {
  max-width: 1160px;
  margin: 0 auto;
  padding-block: clamp(54px, 8vw, 92px);
}

.page-hero.compact {
  min-height: 0;
}

.dark-hero {
  max-width: none;
  background: var(--green);
  color: #fffdf8;
}

.dark-hero p {
  color: rgb(255 253 248 / 0.78);
}

.contact-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-intro {
  max-width: 560px;
  color: var(--muted);
}

.contact-list li {
  margin: 16px 0;
}

.quote-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-weight: 800;
}

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

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgb(221 124 53 / 0.4);
  outline-offset: 3px;
}

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

.area-card {
  display: grid;
  gap: 10px;
}

.area-card strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.4rem;
}

.area-card span {
  color: var(--muted);
  line-height: 1.6;
}

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.area-links a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
}

.review blockquote {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.35;
}

.review figcaption {
  margin-top: 22px;
  color: var(--green);
  font-weight: 800;
}

.review span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 500;
}

.article {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 94px) clamp(18px, 4vw, 48px);
}

.article h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.article-body {
  margin-top: 44px;
}

.article-body section {
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.article-body h2,
.article-cta h2,
.local-seo-note h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.article-body p,
.article-cta p,
.local-seo-note p {
  color: var(--muted);
}

.article-cta,
.local-seo-note {
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand);
  padding: clamp(22px, 4vw, 34px);
}

.article-cta .button {
  margin-top: 12px;
}

.cta-band {
  display: grid;
  justify-items: center;
  gap: 14px;
  border-block: 1px solid var(--line);
  background: var(--green);
  color: #fffdf8;
  padding-block: 56px;
  text-align: center;
}

.cta-band p {
  margin: 0;
  color: rgb(255 253 248 / 0.78);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-block: 34px;
}

.site-footer p {
  max-width: 440px;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: flex-end;
  color: var(--muted);
  font-weight: 700;
}

.mobile-conversion-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 20;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border: 1px solid rgb(215 212 202 / 0.9);
  border-radius: var(--radius);
  background: rgb(255 253 248 / 0.96);
  padding: 8px;
  box-shadow: 0 14px 40px rgb(23 51 39 / 0.18);
  backdrop-filter: blur(12px);
}

.mobile-conversion-bar a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius) - 2px);
  font-weight: 800;
}

.mobile-conversion-bar a:first-child {
  border: 1px solid var(--line);
  color: var(--green);
}

.mobile-conversion-bar a:last-child {
  background: var(--accent);
  color: var(--accent-ink);
}

@media (max-width: 1080px) {
  .card-grid,
  .card-grid.services,
  .card-grid.pricing.full,
  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav {
    display: none;
  }
}

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

  .site-header,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .phone-link {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
  }

  .hero,
  .two-col,
  .contact-grid,
  .card-grid,
  .card-grid.services,
  .card-grid.pricing.full,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

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

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

  .site-footer nav {
    justify-content: flex-start;
  }

  .mobile-conversion-bar {
    display: grid;
  }
}
