/* ============================================================
   Defiance Stump Removal — style.css
   Mobile-first. No external dependencies.
   ============================================================ */

:root {
  --color-primary: #2E7D32;
  --color-accent: #1B5E20;
  --color-text: #1A1A1A;
  --color-bg: #F9FAF7;
  --color-surface: #FFFFFF;
  --color-border: #D6E4D7;
  --color-hero-text: #FFFFFF;
  --font-stack: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 6px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-stack);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.1s ease;
}

.btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
  filter: brightness(0.95);
}

.btn--hero {
  background: #FFFFFF;
  color: var(--color-primary);
  width: 100%;
  font-size: 1.2rem;
  margin-top: 24px;
  box-shadow: var(--shadow);
}

.btn--cta {
  background: #FFFFFF;
  color: var(--color-accent);
  width: 100%;
  font-size: 1.2rem;
  margin-top: 24px;
  box-shadow: var(--shadow);
}

/* ---- Section title ---- */
.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.3;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--color-primary);
  color: var(--color-hero-text);
  padding: 56px 0 48px;
  text-align: center;
}

.hero__headline {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero__sub {
  font-size: 1.1rem;
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
  background: var(--color-surface);
  padding: 52px 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.benefit-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.benefit-card__icon {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.97rem;
  color: #444;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--color-bg);
  padding: 52px 0;
}

.services__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}

.service-item__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.service-item strong {
  display: block;
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.service-item p {
  font-size: 0.93rem;
  color: #555;
  margin: 0;
}

/* ============================================================
   CALL TO ACTION
   ============================================================ */
.cta {
  background: var(--color-accent);
  color: #FFFFFF;
  padding: 52px 0;
  text-align: center;
}

.cta__headline {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta__copy {
  font-size: 1.05rem;
  opacity: 0.93;
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #12401A;
  color: #D0E8D1;
  padding: 36px 0;
  text-align: center;
}

.footer__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.footer__location {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.footer__phone a {
  color: #A5D6A7;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer__phone a:hover {
  text-decoration: underline;
}

.footer__copy {
  margin-top: 16px;
  font-size: 0.82rem;
  opacity: 0.65;
}

/* ============================================================
   RESPONSIVE — 768px+
   ============================================================ */
@media (min-width: 768px) {

  .hero {
    padding: 80px 0 72px;
  }

  .hero__headline {
    font-size: 2.8rem;
  }

  .btn--hero,
  .btn--cta {
    width: auto;
    min-width: 340px;
    font-size: 1.25rem;
  }

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

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

  .section-title {
    font-size: 2rem;
  }

  .cta__headline {
    font-size: 2.2rem;
  }
}
