/* ──────────────────────────────────────────────
   Clean and Green — Turf Care and Renovation
   Brand palette:
     Fairway Green   #2E7D32
     Deep Forest     #1B4D1F
     Fresh Cut       #A5D6A7
     Charcoal        #2C2C2C
     Limestone       #F4F4EF
     Sun Yellow      #FFC107
   ────────────────────────────────────────────── */

:root {
  --fairway: #2E7D32;
  --forest:  #1B4D1F;
  --fresh:   #A5D6A7;
  --char:    #2C2C2C;
  --lime:    #F4F4EF;
  --yellow:  #FFC107;
  --gray:    #666666;
  --gray-l:  #999999;
  --white:   #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: var(--char);
  line-height: 1.55;
  background: var(--lime);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ──────────  NAV  ────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #E0E0E0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.05; }
.brand-line1 {
  font-size: 18px; font-weight: 900; color: var(--forest); letter-spacing: -0.5px;
}
.brand-line2 {
  font-size: 9px; font-weight: 700; color: var(--fairway); letter-spacing: 3px; margin-top: 2px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14px; text-decoration: none; color: var(--char); font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--fairway); }
.nav-phone {
  font-weight: 800 !important; color: var(--forest) !important; font-size: 15px !important;
}

/* ──────────  LOGO BANNER  ────────── */
.logo-banner {
  background: var(--lime);
  padding: 36px 24px 28px;
  text-align: center;
  border-bottom: 1px solid #E5E5E0;
}
.logo-banner img {
  max-width: 480px;
  width: 100%;
  height: auto;
  display: inline-block;
}
@media (max-width: 600px) {
  .logo-banner { padding: 24px 16px 20px; }
  .logo-banner img { max-width: 320px; }
}

/* ──────────  HERO  ────────── */
.hero {
  background:
    linear-gradient(135deg, rgba(27,77,31,0.96) 0%, rgba(46,125,50,0.92) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><defs><pattern id='g' width='6' height='6' patternUnits='userSpaceOnUse'><path d='M 6 0 L 0 6' stroke='rgba(165,214,167,0.06)' stroke-width='1'/></pattern></defs><rect width='200' height='200' fill='url(%23g)'/></svg>");
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stripe-band { display: flex; height: 12px; }
.stripe { flex: 1; }
.stripe-light { background: var(--fresh); }
.stripe-mid { background: var(--fairway); }
.stripe-dark { background: var(--forest); }

.hero-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 80px 24px 100px;
  text-align: center;
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 4px; font-weight: 700;
  color: var(--fresh); margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 900; line-height: 1.0; letter-spacing: -2px;
  margin-bottom: 32px;
}
.hero-headline-accent { color: var(--fresh); }
.hero-sub {
  font-size: clamp(17px, 2.2vw, 22px);
  max-width: 720px; margin: 0 auto 40px;
  color: rgba(255,255,255,0.92); line-height: 1.5;
}
.hero-sub strong { color: var(--white); font-weight: 700; }
.hero-cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-tagline {
  font-size: 21px; color: var(--white); letter-spacing: 2px; font-weight: 500;
}

/* ──────────  BUTTONS  ────────── */
.btn {
  display: inline-block; padding: 16px 32px;
  font-size: 16px; font-weight: 700; letter-spacing: 1px;
  text-decoration: none; border-radius: 4px; transition: all 0.15s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--yellow); color: var(--forest);
}
.btn-primary:hover { background: #FFD54F; transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--white); border-color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-cta-primary {
  display: inline-block;
  background: var(--forest); color: var(--white);
  padding: 20px 40px; font-size: 18px; font-weight: 800; letter-spacing: 1px;
  text-decoration: none; border-radius: 4px; transition: all 0.15s ease;
}
.btn-cta-primary:hover { background: var(--char); transform: translateY(-2px); }

/* ──────────  BENEFITS STRIP  ────────── */
.benefits { background: var(--white); padding: 64px 0; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  text-align: center;
}
.benefit-icon { font-size: 42px; margin-bottom: 16px; }
.benefit h3 {
  font-size: 20px; font-weight: 800; color: var(--forest);
  margin-bottom: 12px; letter-spacing: 0.5px;
}
.benefit p { font-size: 15px; color: var(--gray); max-width: 280px; margin: 0 auto; }

/* ──────────  COMPARE TABLE  ────────── */
.compare { padding: 80px 0; background: var(--lime); }
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900; color: var(--forest); letter-spacing: -1px;
  margin-bottom: 32px;
}
.section-title.centered { text-align: center; }
.section-title .muted { color: var(--fairway); font-weight: 900; }

.compare-table {
  background: var(--white);
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}
.ct-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid #EEEEEE;
}
.ct-row:last-child { border-bottom: none; }
.ct-row.alt { background: #FAFAF8; }
.ct-header {
  background: var(--forest); color: var(--white);
  padding: 18px 24px;
}
.ct-label {
  font-size: 12px; font-weight: 800; color: var(--gray);
  letter-spacing: 1.5px; text-transform: uppercase;
}
.ct-header .ct-label { color: var(--fresh); }
.ct-seed, .ct-sod {
  font-size: 16px; text-align: center; color: var(--char);
}
.ct-seed.strong { color: var(--forest); font-weight: 800; }
.ct-sod.strong  { color: var(--forest); font-weight: 800; }
.ct-header .ct-seed, .ct-header .ct-sod {
  font-size: 17px; font-weight: 900; letter-spacing: 2px;
  color: var(--white);
}
.ct-header .ct-seed small { display: block; font-size: 11px; font-weight: 500; color: var(--fresh); letter-spacing: 0.5px; margin-top: 4px; }

.compare-footnote {
  font-size: 14px; color: var(--gray); padding: 16px 24px;
  background: var(--white); border-left: 4px solid var(--yellow);
  border-radius: 4px; line-height: 1.6;
}

/* Differentiator (alt compare) section -- "What chains don't do" */
.compare-alt { background: var(--white); }
.differentiator-intro {
  font-size: 17px; color: var(--char); line-height: 1.65;
  max-width: 760px; margin: 0 auto 32px; text-align: center;
}

/* ──────────  3 REASONS  ────────── */
.reasons { padding: 80px 0; background: var(--white); }
.reasons-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 32px;
}
.reason {
  text-align: center;
  padding: 32px 24px;
  background: var(--lime); border-radius: 8px;
}
.reason-icon { font-size: 48px; margin-bottom: 16px; }
.reason h3 {
  font-size: 22px; font-weight: 900; color: var(--forest);
  margin-bottom: 12px; letter-spacing: -0.5px;
}
.reason p { font-size: 15px; color: var(--gray); line-height: 1.6; }

/* ──────────  ASSESSMENT  ────────── */
.assess { padding: 80px 0; background: var(--lime); }
.assess-grid {
  max-width: 720px; margin: 32px auto 0;
  display: flex; flex-direction: column; gap: 12px;
}
.assess-row {
  background: var(--white); border-radius: 6px;
  display: flex; align-items: center; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.assess-tag { width: 12px; align-self: stretch; }
.assess-text { padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; flex: 1; }
.assess-text strong { font-size: 15px; color: var(--forest); letter-spacing: 1px; text-transform: uppercase; }
.assess-text span { color: var(--fairway); font-weight: 700; font-style: italic; }
.assess-green  .assess-tag { background: var(--fresh); }
.assess-yellow .assess-tag { background: var(--yellow); }
.assess-red    .assess-tag { background: #B71C1C; }
.assess-gray   .assess-tag { background: var(--gray); }

/* ──────────  SERVICES  ────────── */
.services { padding: 80px 0; background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 40px; margin-bottom: 40px;
}
.service {
  background: var(--lime); border-radius: 8px; padding: 32px 28px;
  border-top: 6px solid var(--fresh);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.service-sprinkler { border-top-color: var(--fairway); }
.service-sprinkler ul li strong { color: var(--forest); }
.service-overseed { border-top-color: var(--yellow); }
.service-reno { border-top-color: var(--forest); background: var(--forest); color: var(--white); }
.service-reno h3 { color: var(--white); }
.service-reno .service-tag { color: var(--yellow); }
.service-reno ul li { color: var(--white); }
.service-reno .service-availability { color: var(--fresh); }

.service-tag {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  color: var(--fairway); margin-bottom: 12px;
}
.service h3 {
  font-size: 20px; font-weight: 800; color: var(--forest);
  margin-bottom: 20px; line-height: 1.3;
}
.service ul { list-style: none; margin-bottom: 20px; }
.service ul li {
  font-size: 14px; color: var(--char); padding: 6px 0;
  padding-left: 22px; position: relative;
}
.service ul li::before {
  content: "✓"; position: absolute; left: 0; color: var(--fairway); font-weight: 900;
}
.service-reno ul li::before { color: var(--fresh); }
.service-availability { font-size: 13px; font-style: italic; color: var(--fairway); }

/* (Sprinkler-gate styles removed — sprinklers are now a top-tier service card) */

/* ──────────  ABOUT  ────────── */
.about { padding: 80px 0; background: var(--lime); }
.about-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: start;
}
.about-text p { font-size: 16px; color: var(--char); margin-bottom: 18px; line-height: 1.7; }
.about-card {
  background: var(--white); padding: 40px 32px; border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  text-align: center;
}
.about-card-name {
  font-size: 32px; font-weight: 900; color: var(--forest);
  letter-spacing: -0.5px; margin-bottom: 4px;
}
.about-card-title {
  font-size: 12px; font-weight: 800; letter-spacing: 5px; color: var(--fairway);
  margin-bottom: 16px;
}
.about-stripes {
  display: flex; flex-direction: column; gap: 2px; margin: 16px auto; width: 60%;
}
.about-stripes div:nth-child(1) { background: var(--fresh); height: 6px; }
.about-stripes div:nth-child(2) { background: var(--fairway); height: 6px; }
.about-stripes div:nth-child(3) { background: var(--forest); height: 6px; }

.about-phone {
  display: block; font-size: 24px; font-weight: 800; color: var(--forest);
  margin: 16px 0 8px; text-decoration: none;
}
.about-email {
  display: block; font-size: 13px; color: var(--gray); text-decoration: none;
  margin-bottom: 12px;
}
.about-email:hover { color: var(--fairway); }
.about-location {
  font-size: 11px; letter-spacing: 2px; color: var(--gray); text-transform: uppercase;
}

/* ──────────  CTA  ────────── */
.cta {
  background: linear-gradient(135deg, var(--forest) 0%, var(--fairway) 100%);
  color: var(--white); padding: 80px 0; text-align: center;
}
.cta-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; letter-spacing: -1px; margin-bottom: 16px;
}
.cta-sub { font-size: 19px; max-width: 580px; margin: 0 auto 32px; color: rgba(255,255,255,0.92); }
.cta-features {
  display: flex; gap: 32px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap;
  font-size: 16px; color: var(--fresh);
}
.cta-bonus { margin-top: 32px; font-size: 16px; color: rgba(255,255,255,0.9); }
.bonus-tag {
  display: inline-block; padding: 4px 12px;
  background: var(--yellow); color: var(--forest); font-weight: 900; font-size: 13px;
  border-radius: 3px; letter-spacing: 1px; margin-right: 8px;
}

/* ──────────  FOOTER  ────────── */
.foot { background: var(--char); color: rgba(255,255,255,0.85); padding: 64px 0 24px; }
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px;
}
.foot-brand {
  font-size: 18px; font-weight: 900; color: var(--white); letter-spacing: -0.5px;
}
.foot-desc {
  font-size: 9px; font-weight: 700; letter-spacing: 3px; color: var(--fresh);
  margin: 4px 0 16px;
}
.foot-tag { color: var(--fresh); font-size: 14px; }
.foot h4 {
  font-size: 12px; font-weight: 800; letter-spacing: 2px; color: var(--white);
  margin-bottom: 12px; text-transform: uppercase;
}
.foot a, .foot p {
  display: block; font-size: 14px; color: rgba(255,255,255,0.7);
  text-decoration: none; margin-bottom: 6px; line-height: 1.6;
}
.foot a:hover { color: var(--fresh); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; font-size: 12px;
  color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 12px;
}

/* ──────────  RESPONSIVE  ────────── */
@media (max-width: 880px) {
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-phone) { display: none; }
  .benefits-grid, .reasons-grid, .about-grid, .foot-grid {
    grid-template-columns: 1fr;
  }
  .services-grid { grid-template-columns: 1fr; }
  .ct-row { grid-template-columns: 1fr 1fr 1fr; padding: 14px 16px; }
  .ct-label { font-size: 10px; letter-spacing: 0.8px; }
  .ct-seed, .ct-sod { font-size: 14px; }
  .sprinkler-gate-inner { flex-direction: column; text-align: center; padding: 24px 20px; }
  .assess-text { flex-direction: column; align-items: flex-start; gap: 4px; }
  .hero-inner { padding: 60px 24px 80px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .compare, .reasons, .assess, .services, .about, .cta { padding: 56px 0; }
  .ct-header .ct-seed, .ct-header .ct-sod { font-size: 13px; letter-spacing: 1px; }
  .ct-header .ct-seed small { font-size: 9px; }
}
