/* ============================================
   MOANE LANDSCAPING - MAIN STYLESHEET
   North Shore & Lake County, IL
   ============================================ */

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

:root {
  --stone: #2C2C2C;
  --stone-light: #3D3D3D;
  --earth: #8B6F47;
  --earth-light: #A68B5B;
  --earth-warm: #C4A265;
  --sage: #6B7B5E;
  --sage-light: #8FA07D;
  --cream: #F5F1EB;
  --cream-dark: #E8E2D8;
  --white: #FFFFFF;
  --red-accent: #C0392B;
  --text: #1a1a1a;
  --text-light: #555;
  --text-lighter: #888;
  --shadow: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 50px rgba(0,0,0,0.12);
  --radius: 6px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1260px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 30px;
}
.nav-logo img { height: 56px; width: auto; display: block; }
.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--text);
  font-weight: 500; font-size: 0.9rem;
  padding: 8px 14px; border-radius: var(--radius);
  transition: var(--transition); letter-spacing: 0.01em;
}
.nav-links a:hover { background: var(--cream); color: var(--earth); }
.nav-links .nav-cta {
  background: var(--stone); color: var(--white) !important;
  font-weight: 600; padding: 10px 22px;
  border-radius: 50px; margin-left: 6px;
}
.nav-links .nav-cta:hover { background: var(--earth); }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 0.88rem; color: var(--earth);
  text-decoration: none; margin-right: 8px;
  white-space: nowrap;
}
.nav-phone svg { width: 16px; height: 16px; }
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); margin: 5px 0;
  transition: var(--transition); border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; font-weight: 600;
  font-size: 0.95rem; padding: 14px 32px;
  border-radius: 50px; transition: var(--transition);
  border: none; cursor: pointer; font-family: inherit;
  line-height: 1.4;
}
.btn-primary { background: var(--earth-warm); color: var(--stone); }
.btn-primary:hover { background: var(--white); color: var(--stone); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--earth-warm); color: var(--earth-warm); }
.btn-dark { background: var(--stone); color: var(--white); }
.btn-dark:hover { background: var(--earth); transform: translateY(-2px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 94vh;
  display: flex; align-items: center;
  background: var(--stone);
  overflow: hidden; padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/hero_page.jpg');
  background-size: cover; background-position: center;
  opacity: 0.35;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,20,20,0.88) 0%, rgba(44,44,44,0.6) 50%, rgba(139,111,71,0.25) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1260px; margin: 0 auto;
  padding: 60px 30px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.8rem; color: var(--earth-warm);
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.8s ease both;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: var(--white); line-height: 1.1;
  max-width: 720px; margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero h1 span { color: var(--earth-warm); }
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.7); max-width: 580px;
  margin-bottom: 36px; line-height: 1.75; font-weight: 300;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.8s ease 0.3s both; }
.hero-stats {
  display: flex; gap: 48px; margin-top: 56px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-stat h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem; color: var(--earth-warm);
}
.hero-stat p {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500;
}

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

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--cream); padding: 24px 30px;
  border-bottom: 1px solid var(--cream-dark);
}
.trust-inner {
  max-width: 1260px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 40px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-lighter);
  font-weight: 600; white-space: nowrap;
}
.trust-logos { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.trust-logos img {
  height: 34px; width: auto; opacity: 0.5;
  filter: grayscale(30%); transition: var(--transition);
}
.trust-logos img:hover { opacity: 1; filter: none; }

/* ============================================
   SECTIONS (GLOBAL)
   ============================================ */
section { padding: 100px 30px; }
.section-inner { max-width: 1260px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: 0.73rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--earth); font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem); color: var(--stone);
  line-height: 1.15; margin-bottom: 14px;
}
.section-desc {
  font-size: 1.02rem; color: var(--text-light);
  max-width: 600px; line-height: 1.75;
}
.section-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 20px;
}

/* ============================================
   SERVICES GRID
   ============================================ */
#services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.service-card {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
  box-shadow: var(--shadow);
}
.service-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 45%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px;
  transition: var(--transition);
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
}
.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem; color: var(--white); margin-bottom: 5px;
}
.service-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.service-card .service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--earth-warm); font-weight: 600; font-size: 0.83rem;
  margin-top: 10px; text-decoration: none; transition: var(--transition);
}
.service-card:hover .service-link { gap: 10px; }

/* ============================================
   PROCESS
   ============================================ */
.process { background: var(--stone); color: var(--white); }
.process .section-label { color: var(--earth-warm); }
.process .section-title { color: var(--white); }
.process .section-desc { color: rgba(255,255,255,0.55); }
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 52px;
}
.process-card {
  padding: 34px; border-radius: 12px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.process-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--earth-warm); color: var(--stone);
  font-weight: 700; font-size: 1.1rem; margin-bottom: 18px;
}
.process-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem; margin-bottom: 10px;
}
.process-card p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ============================================
   WHY CHOOSE
   ============================================ */
.why-choose { background: var(--cream); }
.wc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px; margin-top: 48px;
}
.wc-card {
  padding: 32px; background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow); transition: var(--transition);
  border-left: 4px solid transparent;
}
.wc-card:hover { border-left-color: var(--earth-warm); transform: translateY(-3px); }
.wc-icon { font-size: 1.5rem; margin-bottom: 12px; }
.wc-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem; margin-bottom: 8px; color: var(--stone);
}
.wc-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ============================================
   PORTFOLIO
   ============================================ */
#portfolio { background: var(--white); }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-top: 48px;
}
.portfolio-grid img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: 6px; transition: var(--transition);
  cursor: pointer;
}
.portfolio-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--stone); }
.testimonials .section-label { color: var(--earth-warm); }
.testimonials .section-title { color: var(--white); }
.test-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 48px;
}
.test-card {
  padding: 30px; background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; transition: var(--transition);
}
.test-card:hover { background: rgba(255,255,255,0.06); }
.test-stars { color: var(--earth-warm); font-size: 0.88rem; margin-bottom: 14px; letter-spacing: 2px; }
.test-card blockquote {
  font-size: 0.93rem; color: rgba(255,255,255,0.72);
  line-height: 1.75; font-style: italic; margin-bottom: 16px;
}
.test-author { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.test-card .rating-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; padding: 5px 12px;
  background: rgba(196,162,101,0.12); border-radius: 50px;
  font-size: 0.75rem; color: var(--earth-warm); font-weight: 600;
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas { background: var(--cream); }
.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px; margin-top: 40px;
}
.area-tag {
  padding: 13px 18px; background: var(--white); border-radius: 8px;
  font-weight: 500; font-size: 0.9rem; color: var(--stone);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04); transition: var(--transition);
  text-align: center; cursor: default;
  border: 1.5px solid transparent;
}
.area-tag:hover { background: var(--earth-warm); color: var(--white); transform: translateY(-2px); }
.area-tag.primary { border-color: var(--earth-warm); font-weight: 600; }

/* ============================================
   ABOUT
   ============================================ */
#about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center; margin-top: 48px;
}
.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about-img-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; }
.about-img-grid img:first-child { grid-column: 1 / -1; height: 260px; }
.about-text h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem; color: var(--stone); margin: 22px 0 8px;
}
.about-text p { font-size: 0.93rem; color: var(--text-light); line-height: 1.8; }

/* ============================================
   BLOG
   ============================================ */
#blog { background: var(--cream); }
.blog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; margin-top: 48px;
}
.blog-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
  text-decoration: none; display: block;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card img { width: 100%; height: 240px; object-fit: cover; }
.blog-card-body { padding: 26px; }
.blog-card .blog-tag {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--earth); font-weight: 600;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem; color: var(--stone);
  margin-bottom: 10px; line-height: 1.3;
}
.blog-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.blog-card .read-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--earth); font-weight: 600; font-size: 0.85rem;
  margin-top: 14px; text-decoration: none;
}

/* ============================================
   BLOG ARTICLE
   ============================================ */
.blog-article { max-width: 800px; margin: 0 auto; padding: 120px 30px 80px; }
.blog-article .ba-breadcrumb { font-size: 0.82rem; color: var(--text-lighter); margin-bottom: 20px; }
.blog-article .ba-breadcrumb a { color: var(--earth); text-decoration: none; }
.blog-article .ba-breadcrumb a:hover { text-decoration: underline; }
.blog-article h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--stone);
  line-height: 1.2; margin-bottom: 16px;
}
.blog-article .ba-meta {
  display: flex; gap: 14px; align-items: center;
  font-size: 0.83rem; color: var(--text-lighter);
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-dark);
  flex-wrap: wrap;
}
.blog-article h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.45rem; color: var(--stone); margin: 40px 0 14px;
}
.blog-article h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem; color: var(--stone); margin: 28px 0 10px;
}
.blog-article p { font-size: 1rem; color: var(--text-light); line-height: 1.85; margin-bottom: 16px; }
.blog-article ul, .blog-article ol { margin: 12px 0 20px 20px; }
.blog-article li { font-size: 1rem; color: var(--text-light); line-height: 1.8; padding: 3px 0; }
.blog-article .ba-callout {
  padding: 24px 28px; background: var(--cream);
  border-left: 4px solid var(--earth-warm);
  border-radius: 0 8px 8px 0; margin: 28px 0;
}
.blog-article .ba-callout p { margin: 0; font-weight: 500; color: var(--stone); }
.blog-article .ba-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.92rem; }
.blog-article .ba-table th, .blog-article .ba-table td {
  padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--cream-dark);
}
.blog-article .ba-table th {
  background: var(--stone); color: var(--white);
  font-weight: 600; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.blog-article .ba-table tr:nth-child(even) td { background: var(--cream); }
.blog-article .ba-cta {
  margin-top: 48px; padding: 40px; background: var(--stone);
  border-radius: 12px; text-align: center;
}
.blog-article .ba-cta h3 { font-family: 'DM Serif Display', serif; color: var(--white); font-size: 1.35rem; margin-bottom: 10px; }
.blog-article .ba-cta p { color: rgba(255,255,255,0.65); margin-bottom: 20px; }

/* ============================================
   FAQ
   ============================================ */
#faq { background: var(--cream); }
.faq-list { max-width: 800px; margin: 48px auto 0; }
.faq-item {
  background: var(--white); border-radius: 10px;
  margin-bottom: 10px; box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  overflow: hidden;
}
.faq-q {
  padding: 18px 24px; cursor: pointer;
  font-weight: 600; font-size: 0.98rem; color: var(--stone);
  display: flex; justify-content: space-between; align-items: center;
  transition: var(--transition); user-select: none;
}
.faq-q:hover { color: var(--earth); }
.faq-q::after { content: '+'; font-size: 1.4rem; font-weight: 300; transition: var(--transition); flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }
.faq-a p { font-size: 0.93rem; color: var(--text-light); line-height: 1.8; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--stone) 0%, #1a1a1a 100%);
  text-align: center; padding: 100px 30px;
}
.final-cta .section-label { color: var(--earth-warm); }
.final-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem); color: var(--white);
  margin-bottom: 14px;
}
.final-cta p { color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 540px; margin: 0 auto 28px; }
.final-cta .cta-phone {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; color: var(--earth-warm);
  text-decoration: none; display: block; margin-bottom: 18px;
  transition: var(--transition);
}
.final-cta .cta-phone:hover { color: var(--white); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #111; color: rgba(255,255,255,0.45); padding: 56px 30px 28px; }
.footer-inner {
  max-width: 1260px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-brand img { height: 46px; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 300px; }
.footer h4 {
  color: var(--white); font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px;
}
.footer a {
  color: rgba(255,255,255,0.45); text-decoration: none;
  font-size: 0.85rem; transition: var(--transition);
  display: block; padding: 3px 0;
}
.footer a:hover { color: var(--earth-warm); }
.footer-bottom {
  max-width: 1260px; margin: 36px auto 0;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; flex-wrap: wrap; gap: 10px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 16px 20px; gap: 2px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--cream-dark);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 0.95rem; }
  .nav-links .nav-cta { text-align: center; margin: 8px 0 0; }
  .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat { min-width: 100px; }
  .process-grid { grid-template-columns: 1fr; }
  .wc-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  section { padding: 70px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 40px 20px; }
  .hero-stats { gap: 16px; }
  .hero-stat h3 { font-size: 1.6rem; }
  .blog-article { padding: 100px 20px 60px; }
  .blog-article .ba-table { font-size: 0.8rem; }
  .blog-article .ba-table th, .blog-article .ba-table td { padding: 8px 10px; }
}
