/* ═══════════════════════════════════════════
   MOWJO LAWN AND LANDSCAPE LLC — styles.css
   Mobile-first, SEO-ready, accessible
═══════════════════════════════════════════ */
:root {
  --green-dark: #1a7a75;
  --green-mid: #2AADA6;
  --green-light: #3DBFB8;
  --green-pale: #e6f7f6;
  --yellow: #D98B3A;
  --cream: #faf9f7;
  --text-dark: #1a3533;
  --text-mid: #2e6e6a;
  --shadow: 0 12px 40px rgba(0,0,0,0.10);
  --radius: 20px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--cream); color: var(--text-dark);
  overflow-x: hidden; line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 18px; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(20,95,90,0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px rgba(0,0,0,0.16);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 12px; }
.brand { text-decoration: none; display: flex; align-items: center; }
.nav-logo { height: 50px; width: auto; border-radius: 8px; }
.nav-links { display: flex; gap: 14px; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.88); font-weight: 800; font-size: 13px; letter-spacing: .04em; transition: color .2s; }
.nav-links a:hover, .nav-links a:focus { color: var(--yellow); }
.nav-cta-btn {
  background: var(--yellow) !important; color: var(--green-dark) !important;
  padding: 8px 16px; border-radius: 999px; font-weight: 900 !important;
}
.nav-cta-btn:hover { filter: brightness(1.08); }
.nav-phone { color: #fff; font-weight: 900; font-size: 13px; white-space: nowrap; text-decoration: none; }
.nav-phone:hover { color: var(--yellow); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* BREADCRUMB */
.breadcrumb { background: #fff; border-bottom: 1px solid var(--green-pale); padding: 10px 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; font-size: 13px; font-weight: 700; }
.breadcrumb li + li::before { content: '›'; margin-right: 6px; color: var(--text-mid); opacity: .6; }
.breadcrumb a { color: var(--green-mid); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--text-mid); }

/* HERO */
.hero {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(42,173,166,.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(217,139,58,.12) 0%, transparent 55%),
    linear-gradient(160deg, #122b2a 0%, #1e3a38 60%, #153331 100%);
  color: #fff; padding: 60px 0 40px;
}
.hero-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 24px; align-items: center; }
.hero-logo-wrap { margin-bottom: 18px; }
.hero-logo { width: min(280px, 80%); height: auto; filter: drop-shadow(0 4px 20px rgba(0,0,0,.3)); }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(217,139,58,.16); border: 1px solid rgba(217,139,58,.45);
  color: var(--yellow); padding: 7px 14px; border-radius: 999px;
  font-weight: 900; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}
.h1 {
  font-family: 'Righteous', cursive;
  font-size: clamp(28px, 4vw, 50px); line-height: 1.08;
  margin: 14px 0 12px; letter-spacing: .02em;
}
.h1 em { color: var(--yellow); font-style: normal; }
.lede { color: rgba(255,255,255,.85); font-weight: 700; line-height: 1.65; font-size: 16px; max-width: 56ch; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; padding: 13px 20px; text-decoration: none; font-weight: 900; font-size: 15px; transition: .2s; border: none; cursor: pointer; font-family: inherit; }
.btn-primary { background: var(--yellow); color: var(--green-dark); box-shadow: 0 8px 26px rgba(217,139,58,.35); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.07); }
.btn-outline { border: 2px solid rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.09); }
.hero-card { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 22px; backdrop-filter: blur(14px); }
.hero-card h3 { font-weight: 900; font-size: 16px; margin-bottom: 8px; }
.hero-card p { color: rgba(255,255,255,.82); font-weight: 700; line-height: 1.55; font-size: 14px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag { border-radius: 999px; padding: 5px 10px; font-weight: 900; font-size: 12px; background: rgba(42,173,166,.18); border: 1px solid rgba(42,173,166,.35); color: #d8fffd; }
.hero-rating { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.8); font-weight: 800; }
.hero-rating .stars { color: var(--yellow); letter-spacing: 2px; font-size: 16px; }

/* SECTIONS */
section { padding: 56px 0; }
.section-head { margin-bottom: 22px; }
.kicker { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 900; color: var(--green-mid); }
.h2 { font-family: 'Righteous', cursive; font-size: clamp(24px, 3vw, 36px); line-height: 1.12; margin-top: 8px; color: var(--green-dark); letter-spacing: .02em; }
.h2 em { color: var(--green-mid); font-style: normal; }
.sub { color: var(--text-mid); font-weight: 700; line-height: 1.7; max-width: 68ch; font-size: 15px; }
.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }

/* CARDS */
.svc { background: #fff; border: 2px solid var(--green-pale); border-radius: var(--radius); padding: 20px; box-shadow: 0 4px 18px rgba(0,0,0,.05); transition: .2s; }
.svc:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(61,191,184,.6); }
.svc h3 { font-weight: 900; color: var(--green-dark); font-size: 16px; margin-bottom: 8px; }
.svc p { color: var(--text-mid); font-weight: 700; line-height: 1.6; font-size: 14px; margin-bottom: 10px; }
.svc a { color: var(--green-mid); font-weight: 900; font-size: 14px; }
.svc a:hover { text-decoration: underline; }
.svc-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.svc ul { padding-left: 18px; color: var(--text-mid); font-weight: 700; line-height: 1.9; font-size: 14px; }

/* AREAS */
.split { background: linear-gradient(135deg, var(--green-pale) 0%, #fff 100%); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.pill { background: #fff; border: 2px solid rgba(26,122,117,.18); padding: 9px 14px; border-radius: 999px; font-weight: 900; color: var(--green-dark); font-size: 13px; text-decoration: none; transition: .2s; }
.pill:hover { background: var(--green-pale); border-color: var(--green-mid); }

/* BEFORE/AFTER */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.5rem; }
.ba-card { background: #fff; border: 2px solid var(--green-pale); border-radius: var(--radius); overflow: hidden; transition: .2s; }
.ba-card:hover { box-shadow: var(--shadow); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; height: 200px; }
.ba-img-wrap { position: relative; overflow: hidden; }
.ba-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.ba-img-wrap:hover img { transform: scale(1.06); }
.ba-label { position: absolute; top: 8px; left: 8px; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.ba-label.before { background: rgba(0,0,0,.65); color: rgba(255,255,255,.9); }
.ba-label.after  { background: rgba(42,173,166,.9); color: #fff; }
.ba-caption { padding: 14px 16px; }
.ba-caption h4 { font-size: 14px; font-weight: 900; color: var(--green-dark); margin-bottom: 4px; }
.ba-caption p { font-size: 13px; font-weight: 700; color: var(--text-mid); }

/* PROJECT SPOTLIGHT */
.spotlight-bg { background: #0e4a46; color: #fff; }
.spotlight-bg .kicker { color: var(--yellow); }
.spotlight-bg .h2 { color: #fff; }
.spotlight-bg .h2 em { color: var(--yellow); }
.spotlight-bg .sub { color: rgba(255,255,255,.75); }
.process-bar { display: grid; grid-template-columns: repeat(3,1fr); border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); margin-bottom: 24px; }
.process-step { padding: 14px 16px; font-size: 13px; font-weight: 900; display: flex; align-items: center; gap: 8px; }
.step-before { background: rgba(255,255,255,.07); }
.step-during { background: rgba(217,139,58,.2); color: var(--yellow); }
.step-after  { background: rgba(42,173,166,.2); color: #7ee8e4; }
.step-num { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; flex-shrink: 0; background: rgba(255,255,255,.15); }
.spotlight-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 12px; }
.spotlight-card { border-radius: 14px; overflow: hidden; position: relative; aspect-ratio: 4/3; }
.spotlight-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.spotlight-card:hover img { transform: scale(1.05); }
.spotlight-badge { position: absolute; top: 8px; left: 8px; padding: 3px 10px; border-radius: 50px; font-size: 11px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.badge-before { background: rgba(0,0,0,.6); color: rgba(255,255,255,.9); }
.badge-during { background: rgba(217,139,58,.85); color: #fff; }
.badge-after  { background: rgba(42,173,166,.9); color: #fff; }
.spotlight-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 12px; background: linear-gradient(transparent, rgba(0,0,0,.72)); color: #fff; font-size: 12px; font-weight: 700; }

/* REVIEWS */
.reviews-bg { background: var(--green-pale); }
.quote { background: #fff; border: 2px solid rgba(42,173,166,.2); border-radius: var(--radius); padding: 20px; transition: .2s; }
.quote:hover { box-shadow: var(--shadow); }
.stars { color: var(--yellow); letter-spacing: 3px; font-size: 18px; }
.quote-text { margin-top: 10px; color: var(--text-mid); font-weight: 700; line-height: 1.7; font-style: italic; font-size: 14px; }
.quote-author { margin-top: 12px; font-weight: 900; color: var(--text-dark); font-size: 14px; }
.review-source { font-size: 11px; color: var(--green-mid); font-weight: 900; letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; }

/* FAQ */
.faq-bg { background: #fff; }
details { border: 2px solid var(--green-pale); border-radius: 14px; margin-bottom: 10px; overflow: hidden; }
details summary { padding: 16px 20px; cursor: pointer; font-weight: 900; font-size: 15px; color: var(--green-dark); list-style: none; display: flex; justify-content: space-between; align-items: center; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; font-size: 20px; color: var(--green-mid); flex-shrink: 0; }
details[open] summary::after { content: '−'; }
details[open] { border-color: var(--green-mid); }
details p { padding: 0 20px 16px; color: var(--text-mid); font-weight: 700; line-height: 1.7; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.5rem; }
.blog-card { background: #fff; border: 2px solid var(--green-pale); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-header { background: linear-gradient(135deg, #0e4a46, #2AADA6); padding: 20px 20px 28px; position: relative; }
.blog-card-header::after { content: ''; position: absolute; bottom: -16px; left: 0; right: 0; height: 32px; background: #fff; border-radius: 50% 50% 0 0; }
.blog-emoji { font-size: 2.2rem; display: block; margin-bottom: 6px; }
.blog-tag { display: inline-block; background: rgba(255,255,255,.2); color: #fff; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; }
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 12px; font-weight: 700; color: var(--text-mid); margin-bottom: 6px; }
.blog-card h3 { font-size: 15px; font-weight: 900; color: var(--green-dark); margin-bottom: 8px; line-height: 1.35; }
.blog-excerpt { font-size: 13px; font-weight: 700; color: var(--text-mid); line-height: 1.65; flex: 1; }
.blog-read-more { display: inline-flex; align-items: center; gap: 4px; margin-top: 12px; color: var(--green-mid); font-size: 13px; font-weight: 900; cursor: pointer; transition: gap .2s; background: none; border: none; font-family: inherit; }
.blog-read-more:hover { gap: 8px; }
.blog-modal-overlay { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(0,0,0,.65); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 16px; }
.blog-modal-overlay.open { display: flex; }
.blog-modal { background: #fff; border-radius: 24px; max-width: 720px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.blog-modal-header { background: linear-gradient(135deg, #0e4a46, #2AADA6); padding: 28px 24px 36px; border-radius: 24px 24px 0 0; position: relative; }
.blog-modal-header::after { content: ''; position: absolute; bottom: -18px; left: 0; right: 0; height: 36px; background: #fff; border-radius: 50% 50% 0 0; }
.blog-modal-header h2 { color: #fff; font-size: 1.4rem; line-height: 1.3; margin-top: 8px; }
.blog-modal-close { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,.2); border: none; color: #fff; width: 34px; height: 34px; border-radius: 50%; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.blog-modal-body { padding: 1.75rem 1.75rem 2rem; }
.blog-modal-body p { font-size: 15px; font-weight: 700; color: var(--text-mid); line-height: 1.75; margin-bottom: 1rem; }
.blog-modal-body h4 { font-size: 16px; font-weight: 900; color: var(--green-dark); margin: 1.5rem 0 6px; }
.blog-modal-body ul { padding-left: 20px; margin-bottom: 12px; }
.blog-modal-body ul li { font-size: 14px; font-weight: 700; color: var(--text-mid); line-height: 1.7; margin-bottom: 4px; }
.blog-cta-box { background: var(--green-pale); border: 2px solid rgba(42,173,166,.3); border-radius: 14px; padding: 18px; margin-top: 20px; text-align: center; }
.blog-cta-box p { color: var(--green-dark); font-weight: 900; margin-bottom: 10px; }

/* CONTACT */
.contact-bg { background: linear-gradient(150deg, #0e4a46 0%, #1a7a75 100%); color: #fff; text-align: center; }
.contact-bg .h2 { color: #fff; }
.contact-bg .sub { color: rgba(255,255,255,.78); margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 18px; margin-bottom: 8px; }
.contact-tile { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 18px; }
.contact-tile h4 { color: var(--yellow); letter-spacing: .12em; text-transform: uppercase; font-size: 11px; font-weight: 900; margin-bottom: 8px; }
.contact-tile a { color: #fff; font-weight: 900; font-size: 16px; }
.contact-tile a:hover { color: var(--yellow); }
form { margin-top: 20px; display: grid; gap: 10px; max-width: 680px; margin-left: auto; margin-right: auto; }
input, textarea, select { width: 100%; padding: 13px 14px; border-radius: 14px; border: 2px solid rgba(255,255,255,.22); background: rgba(255,255,255,.09); color: #fff; font-weight: 700; font-family: inherit; font-size: 15px; outline: none; transition: .2s; }
input:focus, textarea:focus, select:focus { border-color: var(--yellow); background: rgba(255,255,255,.14); }
textarea { min-height: 110px; resize: vertical; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.6); }
select option { color: var(--text-dark); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
button[type="submit"] { border: 0; border-radius: 999px; padding: 14px 22px; background: var(--yellow); color: var(--green-dark); font-weight: 900; font-size: 16px; cursor: pointer; font-family: inherit; transition: .2s; }
button[type="submit"]:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* SEO STRIP */
.seo-strip { background: #f0f0ee; padding: 14px 0; font-size: 12px; color: #666; text-align: center; line-height: 2; }
.seo-strip a { color: var(--green-mid); font-weight: 700; }
.seo-strip strong { color: var(--text-dark); }

/* FOOTER */
footer { background: #092e2b; color: rgba(255,255,255,.6); padding: 40px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.footer-logo { height: 48px; width: auto; border-radius: 8px; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; font-weight: 700; line-height: 1.6; color: rgba(255,255,255,.55); }
.footer-links h4, .footer-contact h4 { color: var(--yellow); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 900; margin-bottom: 10px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 6px; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,.7); font-size: 13px; font-weight: 700; transition: .2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--yellow); }
.footer-contact p { margin-bottom: 6px; font-size: 13px; font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12px; }

/* FAB */
.fab { position: fixed; right: 16px; bottom: 16px; z-index: 2000; display: flex; flex-direction: column; gap: 10px; }
.fab a { text-decoration: none; font-weight: 900; padding: 12px 16px; border-radius: 999px; box-shadow: 0 8px 20px rgba(0,0,0,.18); display: inline-flex; align-items: center; gap: 8px; font-size: 14px; transition: .2s; }
.fab a:hover { transform: translateY(-2px); }
.fab-call { background: var(--yellow); color: var(--green-dark); }
.fab-text { background: #fff; color: var(--green-dark); border: 2px solid rgba(26,122,117,.18); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-phone { display: none; }
}
@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(20,95,90,.98); flex-direction: column; gap: 0; padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-links .nav-cta-btn { margin: 8px 16px; border-radius: 999px; text-align: center; display: block; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-bar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ba-images { height: 160px; }
}

/* ── SKIP LINK (accessibility) ── */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--yellow);
  color: var(--green-dark);
  font-weight: 900;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  z-index: 9999;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── BACK TO TOP BUTTON ── */
#back-to-top {
  position: fixed;
  bottom: 130px;
  right: 16px;
  z-index: 1999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.22);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover { background: var(--green-mid); }
