/* ============================================================
   Midwest Lot Care — Homepage CSS
   Replaces HTML5UP Paradigm Shift for index.html only.
   Service pages continue to load main.css independently.
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --navy:       #033D60;
  --navy-dark:  #022D47;
  --blue:       #5597C5;
  --blue-light: #ddeef9;
  --off-white:  #FEFBF4;
  --white:      #ffffff;
  --text:       #1c1c1c;
  --muted:      rgba(0,0,0,0.60);
  --border:     rgba(0,0,0,0.08);
  --radius:     0.9rem;
  --max-w:      1100px;
  --font-head:  'Raleway', sans-serif;
  --font-body:  'Source Sans Pro', sans-serif;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
ul  { list-style: none; }
a   { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
}
p { line-height: 1.65; }

blockquote {
  border-left: 3px solid var(--blue);
  padding: 0.85rem 1.25rem;
  color: var(--muted);
  font-style: italic;
  margin: 1.5rem 0;
  background: var(--blue-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.97rem;
}
blockquote a { color: var(--navy); font-weight: 600; font-style: normal; }

strong { font-weight: 700; }

/* ── Buttons ─────────────────────────────────────────────── */
.button {
  display: inline-block;
  padding: 0.78rem 1.75rem;
  border-radius: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  line-height: 1;
}
.button.primary {
  background: var(--navy);
  color: var(--white) !important;
  border-color: var(--navy);
}
.button.primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}
.button.light {
  background: var(--white);
  color: var(--navy) !important;
  border-color: var(--white);
}
.button.light:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
}

/* ── Layout helpers ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 5rem 0; }

.section-eyebrow {
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.55rem;
  display: block;
}
.section-title {
  font-size: clamp(1.55rem, 3.2vw, 2.3rem);
  margin-bottom: 1rem;
}
.section-body {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 2.25rem;
}

/* ── Nav ─────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.site-nav.scrolled { box-shadow: 0 2px 14px rgba(0,0,0,0.09); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--text);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--navy); text-decoration: none; }
/* Restore button styling when placed inside nav */
.nav-links .button.primary {
  background: var(--navy);
  color: var(--white);
  padding: 0.65rem 1.4rem;
}
.nav-links .button.primary:hover {
  background: var(--navy-dark);
  color: var(--white);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.55rem;
  cursor: pointer;
  color: var(--navy);
  line-height: 1;
  padding: 0.2rem 0.4rem;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  background: var(--white);
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 0.85rem;
}
.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 1rem;
  line-height: 1.35;
}
.hero-body {
  font-size: 1.03rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  max-width: 50ch;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}
.hero-pill {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 1.1rem 0.25rem 0;
  position: relative;
}
.hero-pill + .hero-pill {
  padding-left: 0;
}
.hero-pill .pill-icon {
  color: var(--blue);
  font-size: 0.9rem;
}
.hero-image img {
  width: 100%;
  border-radius: 1.25rem;
  box-shadow: 0 16px 48px rgba(3,61,96,0.18);
  display: block;
  height: auto;
}

/* ── Services ────────────────────────────────────────────── */
.services { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.service-card-tag {
  font-size: 0.73rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.45rem;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.service-card .lot-size {
  font-size: 0.86rem;
  color: var(--muted);
  padding-bottom: 1.1rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.service-card li {
  font-size: 0.92rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.service-card li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* Add-ons */
.addons-label {
  font-size: 0.76rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  text-align: center;
  margin-bottom: 1rem;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.addon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}
.addon-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.addon-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

.services-cta {
  margin-top: 2.75rem;
  text-align: center;
}
.services-cta p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* ── Why It Matters ──────────────────────────────────────── */
.why { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.why-copy p { margin-bottom: 1.1rem; font-size: 1rem; color: var(--muted); }

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: var(--blue-light);
  border: 1px solid rgba(85,151,197,0.2);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  text-align: center;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-desc {
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
}

.why-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.why-photo {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-photo-note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.4rem;
  font-style: italic;
}

/* ── About ───────────────────────────────────────────────── */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 4rem;
  align-items: start;
}
.about-photo img {
  border-radius: 1rem;
  width: 100%;
  box-shadow: 0 8px 32px rgba(3,61,96,0.13);
}
.about-copy p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.about-copy p:last-of-type { margin-bottom: 1.75rem; }

.watershed-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 0.5rem;
}
.watershed-badge img { height: 50px; width: auto; flex-shrink: 0; }
.watershed-body {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}
.watershed-body p {
  flex: 1;
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}
.watershed-btn {
  flex-shrink: 0;
  font-size: 0.82rem;
  padding: 0.45rem 1rem;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .watershed-body { flex-wrap: wrap; }
  .watershed-btn { align-self: flex-end; }
}

/* ── Areas Served ────────────────────────────────────────── */
.areas { background: var(--white); padding: 4rem 0; }
.areas .container { text-align: center; }

.areas-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0 1rem;
}
.area-pill {
  display: inline-block;
  font-size: 0.87rem;
  font-weight: 600;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-head);
}
a.area-pill {
  background: var(--blue-light);
  border-color: rgba(85,151,197,0.3);
  color: var(--navy);
  transition: background 0.15s, border-color 0.15s;
}
a.area-pill:hover {
  background: #c5dff0;
  text-decoration: none;
}
.areas-note {
  font-size: 0.87rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ── CTA Band ────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}
.cta-band p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact-section { background: var(--off-white); padding: 4rem 0; }
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}
.contact-item h3 {
  font-size: 0.76rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.contact-item p,
.contact-item a { font-size: 1rem; color: var(--text); }

/* Google review link */
.google-review-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.15s;
}
.google-review-link:hover { opacity: 0.75; }
.google-review-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  padding: 2.25rem 0 1.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer-logo img { height: 30px; width: auto; opacity: 0.8; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1.5rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.88); text-decoration: none; }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  width: 100%;
  text-align: center;
  padding-top: 1.25rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .services-grid  { grid-template-columns: 1fr; }
  .addons-grid    { grid-template-columns: 1fr 1fr; }
  .why-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .why-photos     { max-width: 520px; }
  .about-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo    { max-width: 340px; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .hero   { padding: 3rem 0; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-image { order: -1; }
  .hero-image img { max-width: 480px; margin: 0 auto; }

  /* Hide review link from mobile nav — it lives in the contact section */
  .nav-links .google-review-link { display: none; }

  /* Mobile nav */
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 0;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; padding-top: 0.75rem; }
  .nav-links a { display: block; padding: 0.85rem 0; }
  .nav-links .button { display: block; text-align: center; }

  .stat-row     { grid-template-columns: 1fr 1fr; }
  .addons-grid  { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container, .hero-inner, .nav-inner { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero-pills { gap: 0.3rem 0.5rem; }
  .hero-pill { font-size: 0.72rem; }
  .stat-row { grid-template-columns: 1fr; }
  .why-photos { grid-template-columns: 1fr; }
}
