/* College Station Lawn Care — Design DNA
   Mood: Precision turf science, not folksy porch-and-toolbox. Clean grid,
   cool and fresh — a soil-test report crossed with a freshly striped field,
   not a Rio Grande Valley canopy or West Texas trade shop.
   Color: cool grid-white canvas, deep teal-emerald brand + slate-blue accent
   (Committed cool-lane palette — distinct hue from every warm/earthy build
   in this pool)
   Type: Space Grotesk (display, geometric technical) + Karla (body, humanist grotesk)
   Layout: strict column grid, split hero with a vertical stat rail (not
   full-width oversized type, not asymmetric featured block), spec-row
   service list on inner pages
   Motion: calm, slow fades — quint easing
   Signature element: animated diagonal "mow-stripe" band alternating two
   teal tones, sweeping in behind the hero like freshly cut turf stripes
*/

:root {
  --canvas: oklch(97% 0.008 195);
  --canvas-alt: oklch(93% 0.012 195);
  --panel: oklch(99% 0.004 195);
  --ink: oklch(21% 0.02 210);
  --ink-soft: oklch(43% 0.018 210);
  --teal: oklch(38% 0.09 185);
  --teal-dark: oklch(29% 0.08 185);
  --teal-light: oklch(88% 0.035 185);
  --slate: oklch(46% 0.035 235);
  --line: oklch(87% 0.01 195);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Karla', sans-serif;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, .display {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* ---- Nav ---- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 32px;
  max-width: 1140px;
  margin: 0 auto;
}
.nav-brand { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 700; }
.nav-brand span { color: var(--teal); }
.nav-links { display: flex; gap: 30px; font-size: 15px; }
.nav-links a { color: var(--ink-soft); transition: color 0.25s ease; }
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: white !important;
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
}

/* ---- Hero: split grid with stat rail ---- */
.hero {
  max-width: 1140px;
  margin: 20px auto 0;
  padding: 40px 32px 0;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.hero-copy h1 {
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.08;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-copy .sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.18s forwards;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.34s forwards; }

.btn-primary {
  background: var(--teal);
  color: white;
  padding: 14px 26px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: background 0.25s ease;
}
.btn-primary:hover { background: var(--teal-dark); }
.btn-secondary {
  border: 1.5px solid var(--line);
  padding: 14px 26px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.25s ease;
}
.btn-secondary:hover { border-color: var(--teal); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Vertical stat rail */
.stat-rail {
  border-left: 2px solid var(--line);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.stat-rail .stat strong { font-family: 'Space Grotesk', sans-serif; font-size: 26px; display: block; color: var(--teal); }
.stat-rail .stat span { font-size: 13.5px; color: var(--ink-soft); }

/* Signature element: mow-stripe band */
.stripe-band {
  position: relative;
  max-width: 1140px;
  margin: 56px auto 0;
  padding: 0 32px;
}
.stripe-svg { width: 100%; height: auto; display: block; }
.stripe-band rect.s1 { fill: var(--teal-light); }
.stripe-band rect.s2 { fill: var(--canvas-alt); }
.stripe-band .stripe-anim {
  transform: translateX(-6%);
  animation: stripeSweep 1.8s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
}
@keyframes stripeSweep {
  to { transform: translateX(0); }
}

/* ---- Sections ---- */
section { padding: 76px 0; }
.section-alt { background: var(--canvas-alt); }
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 13px;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(27px, 3.4vw, 38px); margin-bottom: 16px; max-width: 640px; }
.section-head p { color: var(--ink-soft); font-size: 16.5px; max-width: 560px; }

/* ---- Services: strict grid, spec-row style ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 44px;
  border: 1px solid var(--line);
}
.service-card {
  background: var(--panel);
  padding: 28px 24px;
}
.service-card .num { color: var(--teal); font-size: 13px; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 12px; display: block; }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; color: var(--ink-soft); }

.spec-list { margin-top: 40px; border-top: 1px solid var(--line); }
.spec-row {
  display: grid;
  grid-template-columns: 60px 1fr 1.4fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.spec-row .num { font-family: 'Space Grotesk', sans-serif; color: var(--teal); font-weight: 700; }
.spec-row h3 { font-size: 19px; margin-bottom: 6px; }
.spec-row p { color: var(--ink-soft); font-size: 15px; }

/* ---- CTA band ---- */
.cta-band {
  background: var(--teal);
  color: white;
  text-align: center;
  padding: 68px 32px;
}
.cta-band h2 { color: white; font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; }
.cta-band p { color: var(--teal-light); margin-bottom: 26px; }
.cta-band .btn-primary { background: white; color: var(--teal-dark); }
.cta-band .btn-primary:hover { background: var(--teal-light); }

/* ---- Footer ---- */
footer {
  padding: 38px 32px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
}

/* ---- Inner pages ---- */
.page-header { padding: 56px 32px 36px; max-width: 780px; margin: 0 auto; }
.page-header h1 { font-size: clamp(30px, 4.2vw, 42px); margin-bottom: 14px; }
.page-header p { font-size: 17px; color: var(--ink-soft); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  max-width: 1140px;
  margin: 0 auto 76px;
  padding: 0 32px;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 34px;
  background: var(--panel);
}
.contact-card a.phone { font-family: 'Space Grotesk', sans-serif; font-size: 25px; color: var(--teal); display: block; margin: 8px 0 22px; }
.contact-row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.contact-row:last-child { border-bottom: none; }

form.light-form { display: flex; flex-direction: column; gap: 15px; }
form.light-form label { font-size: 14px; font-weight: 600; color: var(--ink); }
form.light-form input, form.light-form select, form.light-form textarea {
  border: 1.5px solid var(--line);
  border-radius: 3px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  background: var(--canvas);
}
form.light-form textarea { resize: vertical; min-height: 88px; }
form.light-form button {
  background: var(--teal);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.25s ease;
}
form.light-form button:hover { background: var(--teal-dark); }

@media (max-width: 780px) {
  .hero, .services-grid, .contact-layout { grid-template-columns: 1fr; }
  .stat-rail { flex-direction: row; overflow-x: auto; border-left: none; border-top: 2px solid var(--line); padding-left: 0; padding-top: 20px; }
  .spec-row { grid-template-columns: 1fr; gap: 8px; }
  .nav-links { display: none; }
}
