:root {
  --green-950: #062b15;
  --green-900: #0b3a1c;
  --green-800: #0f4a24;
  --green-600: #2d7f2d;
  --gold: #e2ae24;
  --gold-soft: #f7dc78;
  --cream: #fffaf0;
  --paper: #f8f4ea;
  --white: #ffffff;
  --ink: #151b15;
  --muted: #596459;
  --line: rgba(6, 43, 21, 0.16);
  --shadow: 0 14px 34px rgba(6, 43, 21, 0.16);
  --display-font: "Rockwell Extra Bold", "Cooper Black", "Clarendon BT", "Roboto Slab", Georgia, serif;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(226, 174, 36, 0.1), transparent 28rem),
    var(--paper);
}

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;
}

.top-strip {
  background: linear-gradient(90deg, var(--green-950), var(--green-800));
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
}

.top-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 34px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.top-inner span::before,
.quote-link::before,
.button.primary::before {
  content: "\2605";
  color: var(--gold);
  margin-right: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 122px;
  padding: 16px clamp(18px, 4vw, 62px);
  display: grid;
  grid-template-columns: minmax(300px, 390px) 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(6, 43, 21, 0.08);
  box-shadow: 0 4px 18px rgba(6, 43, 21, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
}

.brand img {
  width: min(390px, 100%);
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.8vw, 38px);
  font-weight: 900;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 3px;
  background: var(--green-800);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:first-child::after {
  transform: scaleX(1);
}

.quote-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 5px;
  color: var(--white);
  background: linear-gradient(180deg, #eabf3a, #d39b16);
  box-shadow: 0 6px 16px rgba(183, 127, 11, 0.28);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--green-950);
}

.hero {
  position: relative;
  min-height: clamp(520px, 63vw, 650px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 26, 11, 0.88), rgba(6, 26, 11, 0.52) 48%, rgba(6, 26, 11, 0.12)),
    linear-gradient(0deg, rgba(6, 26, 11, 0.2), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(670px, calc(100% - 36px));
  margin-left: clamp(22px, 7vw, 92px);
  color: var(--white);
}

.hero h1 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 950;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 5px 14px rgba(0, 0, 0, 0.32);
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero p {
  max-width: 530px;
  margin: 20px 0 0;
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  line-height: 1.55;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 5px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(180deg, #eabf3a, #d39b16);
}

.button.ghost {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: rgba(6, 43, 21, 0.24);
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.panel {
  width: min(1240px, calc(100% - 24px));
  margin: 0 auto;
  position: relative;
  z-index: 4;
  padding: 28px clamp(16px, 3vw, 34px) 30px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), var(--cream)),
    var(--cream);
  box-shadow: 0 -10px 34px rgba(6, 43, 21, 0.12);
}

.section-title {
  text-align: center;
  margin: 0 auto 24px;
}

.section-title p,
.label-line,
.eyebrow {
  margin: 0 0 5px;
  color: var(--green-800);
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-title h2,
.about h2,
.service-area h2,
.cta h2 {
  margin: 0;
  color: var(--green-900);
  font-family: var(--display-font);
  font-weight: 950;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.service-card {
  min-height: 206px;
  padding: 22px 16px 18px;
  border: 1px solid rgba(6, 43, 21, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  text-align: center;
}

.service-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 15px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.95), rgba(245, 251, 238, 0.82)),
    linear-gradient(180deg, rgba(48, 129, 45, 0.12), transparent);
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.8),
    0 8px 18px rgba(6, 43, 21, 0.14);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  padding: 13px;
}

.service-icon .line {
  fill: none;
  stroke: var(--green-900);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon .gold-line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon .fill {
  fill: var(--green-800);
  stroke: var(--green-950);
  stroke-width: 2;
  stroke-linejoin: round;
}

.service-icon .fill.light {
  fill: var(--green-600);
}

.service-icon .blade {
  fill: none;
  stroke: var(--green-600);
  stroke-width: 6;
  stroke-linecap: round;
}

.service-icon .wheel {
  fill: var(--white);
  stroke: var(--green-950);
  stroke-width: 5;
}

.service-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.service-card h3::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin: 9px auto 0;
  background: var(--gold);
}

.about {
  padding: 42px 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.about-copy > p {
  margin: 12px 0 24px;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
}

.feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
}

.feature-dot {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-900);
  border: 3px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 4px 12px rgba(6, 43, 21, 0.22);
  font-weight: 950;
}

.feature h3 {
  margin: 0 0 4px;
  color: var(--green-900);
  font-size: 1rem;
}

.feature p {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.35;
}

.about-image {
  position: relative;
}

.about-image > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.yard-sign {
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: min(230px, 44%);
  padding: 10px;
  border: 5px solid var(--green-950);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(6, 43, 21, 0.24);
}

.gallery-band {
  padding: 20px 0 30px;
  background: rgba(255, 255, 255, 0.64);
}

.section-title.small {
  margin-bottom: 14px;
}

.section-title.small h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.gallery-row {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery-row figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(6, 43, 21, 0.12);
}

.gallery-row img {
  width: 100%;
  aspect-ratio: 7 / 4;
  object-fit: cover;
}

.gallery-row figcaption {
  position: absolute;
  left: 11px;
  bottom: 10px;
  padding: 5px 10px;
  border-radius: 20px;
  color: var(--green-950);
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.reviews {
  padding: 30px 0 38px;
}

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

.review-card {
  position: relative;
  min-height: 152px;
  padding: 20px;
  border: 1px solid rgba(6, 43, 21, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.review-card::after {
  content: '"';
  position: absolute;
  right: 22px;
  bottom: -10px;
  color: rgba(6, 43, 21, 0.08);
  font-family: Georgia, serif;
  font-size: 5rem;
}

.stars {
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0;
}

.review-card p {
  margin: 8px 0 14px;
  color: var(--ink);
  line-height: 1.45;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-area {
  padding: 44px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 43, 21, 0.96), rgba(15, 74, 36, 0.92)),
    var(--green-950);
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: center;
}

.service-area h2,
.service-area .eyebrow {
  color: var(--gold-soft);
}

.service-area p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
  font-weight: 700;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.area-list span,
.area-list a {
  display: block;
  min-height: 48px;
  padding: 13px 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(247, 220, 120, 0.35);
  font-weight: 950;
  color: var(--white);
  text-decoration: none;
}

.area-list span::before,
.area-list a::before,
.footer-inner li::before {
  content: ">";
  color: var(--gold);
  margin-right: 8px;
}

.local-hero {
  position: relative;
  min-height: clamp(430px, 52vw, 560px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.local-hero .hero-content {
  width: min(760px, calc(100% - 36px));
}

.breadcrumbs {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--gold-soft);
  text-decoration: none;
}

.local-section {
  padding: clamp(46px, 7vw, 82px) 0;
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.local-copy h2,
.local-card h2,
.faq-section h2 {
  margin: 0 0 16px;
  color: var(--green-900);
  font-family: var(--display-font);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.local-copy p,
.local-card p,
.faq-section p {
  color: var(--ink);
  line-height: 1.65;
  font-weight: 600;
}

.local-card {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.local-card .button {
  margin-top: 12px;
}

.local-card .button.ghost {
  color: var(--green-950);
  border-color: var(--line);
  background: var(--white);
}

.local-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.local-list li {
  padding-left: 28px;
  position: relative;
  color: var(--green-950);
  font-weight: 850;
}

.local-list li::before {
  content: "\2605";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.local-service-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.local-service-links a {
  padding: 14px;
  border: 1px solid rgba(247, 220, 120, 0.35);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  font-weight: 950;
  text-decoration: none;
}

.faq-section {
  padding: 0 0 clamp(48px, 7vw, 86px);
}

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

.faq-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6, 43, 21, 0.08);
}

.faq-item h3 {
  margin: 0 0 9px;
  color: var(--green-900);
}

.faq-item p {
  margin: 0;
}

.cta {
  padding: 24px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 43, 21, 0.96), rgba(12, 65, 30, 0.96)),
    var(--green-950);
  border-top: 1px solid rgba(247, 220, 120, 0.18);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.cta p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.site-footer {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--green-950), #07391b 60%, #0f4a24);
}

.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  display: block;
  width: min(270px, 100%);
  margin-bottom: 12px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-brand p,
.footer-inner a,
.footer-inner span,
.footer-inner li {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
  text-decoration: none;
}

.footer-inner h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.footer-inner address,
.footer-inner div {
  font-style: normal;
}

.footer-inner a,
.footer-inner span {
  display: block;
  margin: 6px 0;
}

.footer-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.copyright {
  padding: 10px 18px;
  color: var(--white);
  background: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: minmax(260px, 330px) 1fr auto;
  }

  .quote-link {
    display: none;
  }

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

@media (max-width: 820px) {
  .top-inner {
    justify-content: center;
    flex-wrap: wrap;
    padding: 7px 0;
  }

  .top-inner span:nth-child(2),
  .top-inner span:nth-child(3) {
    display: none;
  }

  .site-header {
    min-height: 84px;
    grid-template-columns: minmax(210px, 1fr) auto;
  }

  .nav-toggle {
    display: block;
  }

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

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

  .site-nav a {
    padding: 15px 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: 600px;
    align-items: end;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(6, 26, 11, 0.92), rgba(6, 26, 11, 0.5) 65%, rgba(6, 26, 11, 0.12));
  }

  .hero-content {
    margin: 0 auto;
    padding-bottom: 54px;
  }

  .panel {
    margin-top: 0;
    border-radius: 0;
  }

  .service-grid,
  .about,
  .review-grid,
  .area-layout,
  .footer-inner,
  .local-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

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

  .cta-inner {
    display: grid;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: min(255px, 100%);
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

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

  .service-grid,
  .feature-grid,
  .gallery-row,
  .area-list,
  .local-service-links {
    grid-template-columns: 1fr;
  }

  .yard-sign {
    position: static;
    width: 82%;
    margin: -22px auto 0;
  }
}
