:root {
  --green: #215f16;
  --green-dark: #17490f;
  --green-ink: #12380c;
  --cream: #f7f5ec;
  --white: #ffffff;
  --text: #172312;
  --muted: #56614f;
  --line: #dde8d5;
  --shadow: 0 22px 60px rgba(23, 35, 18, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
  padding-bottom: 72px;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(33, 95, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 95, 22, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 4px;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 245, 236, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
}

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

.brand-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
}

.brand-copy strong,
.footer-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.13rem;
  line-height: 1.1;
}

.brand-copy span,
.footer-contact span,
.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
  color: var(--green-ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  display: none;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: var(--white);
  background: var(--green);
  border: 2px solid var(--green);
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  line-height: 1.15;
  box-shadow: 0 10px 28px rgba(23, 73, 15, 0.18);
}

.button:hover,
.button:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.92rem;
}

.button-light {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--green-dark);
  background: var(--cream);
  border-color: var(--cream);
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--white);
}

.section {
  position: relative;
  padding: 72px 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.11), transparent 24rem),
    linear-gradient(135deg, var(--green-dark), var(--green));
  overflow: hidden;
}

.hero {
  padding: 78px 0 64px;
}

.hero-pattern,
.hero-pattern::before,
.hero-pattern::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-pattern {
  width: 420px;
  height: 420px;
  right: -130px;
  top: 54px;
}

.hero-pattern::before {
  width: 290px;
  height: 290px;
  inset: 64px;
}

.hero-pattern::after {
  width: 160px;
  height: 160px;
  inset: 128px;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  font-size: 2.5rem;
  overflow-wrap: normal;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.42rem;
}

.hero-copy p,
.section-heading p,
.about-copy p,
.area-grid p,
.review-card p,
.contact-grid p {
  margin: 20px 0 0;
  font-size: 1.05rem;
}

.hero-copy p {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.88);
}

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

.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 34px 0 0;
}

.trust-strip div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip dt {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.trust-strip dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-badge {
  display: flex;
  justify-content: center;
}

.hero-badge-ring {
  width: min(370px, 82vw);
  aspect-ratio: 1;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.24);
}

.logo-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(18, 56, 12, 0.17));
}

.badge-arc,
.badge-bottom-text,
.badge-side,
.badge-location {
  fill: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.badge-arc {
  font-size: 42px;
  letter-spacing: 0.12em;
}

.badge-bottom-text {
  font-size: 40px;
  letter-spacing: 0.1em;
}

.badge-side {
  font-size: 27px;
}

.badge-location {
  font-size: 28px;
  letter-spacing: 0.02em;
}

.badge-line {
  stroke: var(--white);
  stroke-width: 4;
  stroke-linecap: round;
}

.badge-star,
.texas-mark {
  fill: var(--white);
}

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

.section-heading p,
.about-copy p,
.area-grid p,
.review-card p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 35, 18, 0.08);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 800;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.about-section {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.about-grid,
.area-grid,
.contact-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.about-copy .button {
  margin-top: 26px;
}

.values-panel {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(33, 95, 22, 0.11), transparent 15rem),
    var(--cream);
}

.panel-stamp {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  justify-self: end;
  margin-bottom: 6px;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 800;
  text-align: center;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.value-item span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(33, 95, 22, 0.1);
}

.area-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.area-card div {
  padding: 16px 18px;
  color: var(--green-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
}

.reviews {
  padding-top: 34px;
}

.review-card {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.rating-mark {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border: 6px double var(--white);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 0 0 1px var(--green);
}

.contact-cta {
  padding: 78px 0;
}

.contact-pattern {
  left: -150px;
  right: auto;
  top: auto;
  bottom: -150px;
}

.contact-grid p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-grid .button {
  margin-top: 28px;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-style: normal;
}

.contact-card div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-card span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
  display: block;
  margin-top: 3px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  padding: 32px 0 92px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 20px;
}

.footer-mark {
  width: 72px;
  height: 72px;
  flex-basis: 72px;
}

.footer-brand p {
  max-width: 420px;
  margin: 6px 0 0;
}

.footer-contact {
  display: grid;
  gap: 4px;
}

.footer-contact a {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: none;
}

.mobile-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 12;
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--green);
  border: 2px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(23, 73, 15, 0.35);
  font-weight: 900;
  text-decoration: none;
}

@media (min-width: 700px) {
  body {
    padding-bottom: 0;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    justify-content: center;
  }

  .phone-link {
    display: inline;
  }

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

  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.85rem;
  }

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

  .about-grid,
  .area-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  }

  .review-card {
    grid-template-columns: auto 1fr auto;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-contact {
    justify-items: end;
  }

  .mobile-call {
    display: none;
  }

  .site-footer {
    padding-bottom: 34px;
  }
}

@media (max-width: 699px) {
  .hero-copy,
  .hero-copy p,
  .trust-strip {
    max-width: min(100%, 358px);
  }

  h1 {
    max-width: 358px;
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.9rem;
  }
}

@media (min-width: 960px) {
  .hero {
    min-height: 720px;
    display: grid;
    align-items: center;
    padding: 86px 0 70px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr);
  }

  h1 {
    font-size: 5.75rem;
  }

  h2 {
    font-size: 3.45rem;
  }

  .hero-badge {
    justify-content: flex-end;
  }

  .hero-badge-ring {
    width: min(410px, 34vw);
  }

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

  .service-card {
    min-height: 278px;
  }
}

@media (max-width: 410px) {
  .header-actions {
    width: 100%;
  }

  .header-actions .button {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.8rem;
  }
}
