:root {
  --green-deep: #17300f;
  --green-brand: #3f6b1f;
  --green-bright: #7fae3b;
  --ink: #14170e;
  --paper: #f5f6f0;
  --paper-dim: #e9ebe0;
  --steel: #ccd2c2;
  --white: #ffffff;

  --font-display: "Anton", sans-serif;
  --font-body: "Work Sans", sans-serif;

  --max-width: 1180px;
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  color: var(--green-deep);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* top accent line, mimics a mower deck stripe */
.cutline {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--green-brand) 0 40px,
    var(--green-bright) 40px 80px
  );
}

/* HEADER */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--steel);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand { display: flex; align-items: center; }
.brand-mark { height: 56px; width: auto; display: block; }

.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.site-nav a:hover { border-color: var(--green-bright); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
}

.btn .icon { width: 16px; height: 16px; fill: currentColor; }

.btn-primary {
  background: var(--green-brand);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-deep); }

.btn-ghost {
  background: transparent;
  border-color: var(--green-deep);
  color: var(--green-deep);
}
.btn-ghost:hover { background: var(--green-deep); color: var(--white); }

.btn-call {
  background: var(--green-deep);
  color: var(--white);
}
.btn-call:hover { background: var(--green-brand); }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  color: var(--white);
}

.hero-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    #1d3a13 0px,
    #1d3a13 90px,
    #193312 90px,
    #193312 180px
  );
  opacity: 0.9;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  padding-top: 76px;
  padding-bottom: 88px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-bright);
  margin-bottom: 18px;
}

.hero h1 { color: var(--white); }

.hero-lede {
  max-width: 46ch;
  font-size: 1.1rem;
  color: var(--paper-dim);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 26px;
}

.hero .btn-ghost {
  border-color: var(--white);
  color: var(--white);
}
.hero .btn-ghost:hover { background: var(--white); color: var(--green-deep); }

.hero-badges {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--paper-dim);
}
.hero-badges li { padding-left: 16px; position: relative; }
.hero-badges li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 8px; height: 8px;
  background: var(--green-bright);
}

.hero-plate {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.35));
}

/* jagged cut edge divider, evokes a freshly mowed edge */
.jagged-edge {
  height: 22px;
  background:
    linear-gradient(135deg, var(--green-deep) 25%, transparent 25.5%) 0 0,
    linear-gradient(-135deg, var(--green-deep) 25%, transparent 25.5%) 0 0;
  background-size: 22px 22px;
  background-repeat: repeat-x;
}

/* SERVICES */
.services { padding: 84px 0; }

.section-head { max-width: 60ch; margin-bottom: 48px; }
.section-head p { color: #46503c; font-size: 1.05rem; }

.section-kicker {
  font-family: var(--font-display);
  color: var(--green-brand);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--steel);
  border: 2px solid var(--green-deep);
}

.service-plate {
  background: var(--white);
  padding: 32px 28px;
}

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--green-brand);
  margin-bottom: 16px;
}

.service-plate h3 { margin-bottom: 8px; }
.service-plate p { color: #46503c; margin-bottom: 0; font-size: 0.98rem; }

/* ABOUT */
.about { padding: 88px 0; background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-copy p { color: #303626; }

.signature {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--green-deep);
  margin-top: 24px;
}
.signature span {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: #5a634d;
  margin-top: 4px;
}

.spec-plate {
  border: 2px solid var(--green-deep);
  padding: 28px;
  background: var(--paper);
}

.spec-plate h3 {
  margin-bottom: 18px;
  border-bottom: 2px solid var(--steel);
  padding-bottom: 12px;
}

.spec-plate dl { margin: 0; }
.spec-plate dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--steel);
  font-size: 0.92rem;
}
.spec-plate dl div:last-child { border-bottom: none; }
.spec-plate dt { color: #5a634d; font-weight: 600; }
.spec-plate dd { margin: 0; text-align: right; font-weight: 600; }

/* BANNER */
.banner {
  background: var(--green-brand);
  color: var(--white);
  padding: 22px 0;
}
.banner p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  text-align: center;
  margin: 0;
}

/* AREA */
.area { padding: 84px 0; }

.area-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.area h2 { max-width: 16ch; }
.area p { color: #46503c; max-width: 48ch; }

.area-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.area-list li {
  border-left: 3px solid var(--green-brand);
  padding: 6px 0 6px 14px;
  font-weight: 600;
}

/* CONTACT */
.contact { background: var(--green-deep); color: var(--white); padding: 88px 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact h2 { color: var(--white); }
.contact-info p { color: var(--paper-dim); }

.contact-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-list li { display: flex; align-items: center; gap: 12px; }
.contact-list .icon { width: 20px; height: 20px; fill: var(--green-bright); flex-shrink: 0; }
.contact-list a { text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--green-bright); }

.fb-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 2px solid var(--green-brand);
  padding: 14px 18px;
  text-decoration: none;
  color: var(--white);
  max-width: 380px;
  margin-top: 8px;
}
.fb-card:hover { border-color: var(--green-bright); }
.fb-card img { width: 64px; height: auto; border-radius: 2px; }
.fb-card span { font-weight: 600; font-size: 0.92rem; }

.estimate-form {
  background: var(--white);
  color: var(--ink);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.estimate-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}
.estimate-form input,
.estimate-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 12px;
  border: 1.5px solid var(--steel);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
}
.estimate-form input:focus,
.estimate-form textarea:focus {
  outline: none;
  border-color: var(--green-brand);
}
.form-note { font-size: 0.8rem; color: #5a634d; margin: 0; }

/* FOOTER */
.site-footer { background: #0f1e0a; color: var(--paper-dim); padding: 36px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo { height: 46px; width: auto; }
.footer-meta p { margin: 0; font-size: 0.88rem; }
.footer-copy {
  margin: 0 0 0 auto;
  font-size: 0.8rem;
  color: #7a8570;
}

/* FOCUS VISIBILITY */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--green-bright);
  outline-offset: 2px;
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* RESPONSIVE */
@media (max-width: 920px) {
  .site-nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 52px; padding-bottom: 56px; }
  .hero-plate { order: -1; margin-bottom: 12px; }
  .hero-logo { max-width: 260px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .area-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { margin-left: 0; }
}

@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .header-inner { flex-wrap: wrap; }
  .btn-call span { display: none; }
}
