/* === GREENFIELD LAWN CARE — STARTER DEMO === */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

body {
  font-family: 'Outfit', sans-serif;
  background: #f5f2eb;
  color: #1a1c18;
  line-height: 1.6;
  overflow-x: hidden;
}

:root {
  --cream: #f5f2eb;
  --white: #ffffff;
  --ink: #1a1c18;
  --muted: #64686a;
  --green: #2a5c3f;
  --green-dark: #182e22;
  --green-soft: #edf4f0;
  --border: #dedad2;
  --r: 8px;
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

/* ---- TOP STRIP ---- */
.top-strip {
  background: var(--green-dark);
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 0;
}
.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* ---- HEADER / NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
  flex-shrink: 0;
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--green);
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--ink); font-weight: 700; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: #1e4430; }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green-soft); }
.btn-white { background: var(--white); color: var(--ink); border-color: var(--border); }
.btn-white:hover { background: var(--cream); }
.btn-ghost { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.22); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* ---- DEMO BADGE + BACK BTN ---- */
.demo-badge {
  position: fixed;
  top: 110px;
  right: 16px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 7px 12px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}
.back-btn {
  position: fixed;
  top: 145px;
  right: 16px;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 7px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.15s;
}
.back-btn:hover { background: var(--cream); }

/* ---- TYPOGRAPHY ---- */
section { padding: 80px 0; }

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green);
  margin-bottom: 12px;
}

h1 {
  font-family: 'Bitter', serif;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
}
h2 {
  font-family: 'Bitter', serif;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}
h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ---- HERO ---- */
.hero {
  padding: 68px 0 78px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green);
  margin-bottom: 18px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}
.trust-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
}

/* Hero photo block */
.hero-visual {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}
.hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  background: var(--white);
}
.stat-box {
  padding: 14px 12px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-box:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Bitter', serif;
  font-size: 26px;
  color: var(--green);
  line-height: 1.1;
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- SERVICES STRIP (home) ---- */
.services-strip {
  background: var(--white);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.strip-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 20px;
  flex-wrap: wrap;
}
.strip-head h2 { margin-bottom: 0; }

.link-arrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
  flex-shrink: 0;
}
.link-arrow:hover { gap: 8px; }

.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.svc-box {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.15s;
}
.svc-box:last-child { border-right: none; }
.svc-box:hover { background: var(--green-soft); }
.svc-num {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 12px;
}
.svc-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.svc-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ---- BIO STRIP ---- */
.bio-strip {
  background: var(--green);
  padding: 40px 0;
}
.bio-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.bio-quote {
  font-family: 'Bitter', serif;
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 23px);
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  line-height: 1.4;
}

/* ---- REVIEWS ---- */
.reviews-section { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
}
.stars { color: #c9900e; font-size: 13px; margin-bottom: 14px; letter-spacing: 3px; }
.review-text {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.65;
  font-style: italic;
}
.reviewer { font-weight: 700; font-size: 14px; }
.reviewer-loc { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--green-dark);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-phone {
  display: block;
  font-family: 'Bitter', serif;
  font-size: clamp(38px, 7vw, 70px);
  color: rgba(255,255,255,0.94);
  margin: 12px 0 8px;
  letter-spacing: -0.02em;
  transition: color 0.15s;
}
.cta-phone:hover { color: var(--white); }
.cta-sub {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-bottom: 28px;
}

/* ---- FOOTER ---- */
.site-footer {
  background: #111210;
  color: rgba(255,255,255,0.5);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { font-weight: 800; font-size: 16px; color: var(--white); margin-bottom: 10px; }
.footer-desc { font-size: 13px; line-height: 1.65; }
.footer-col h5 {
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.footer-col li { margin-bottom: 9px; font-size: 13px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.velora-credit { color: rgba(255,255,255,0.3); }
.velora-credit a { color: rgba(255,255,255,0.45); }
.velora-credit a:hover { color: rgba(255,255,255,0.8); }

/* ---- PAGE HEADER (services / contact) ---- */
.page-header {
  background: var(--green-dark);
  color: var(--white);
  padding: 52px 0 48px;
}
.page-header .section-label { color: rgba(255,255,255,0.4); }
.page-header h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 10px;
}
.page-header .lead { color: rgba(255,255,255,0.6); max-width: 560px; }

/* ---- SERVICES FULL (services page) ---- */
.services-full { background: var(--white); }
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 40px;
}
.svc-full-item {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.svc-full-item:nth-child(even) { border-right: none; }
.svc-full-item:nth-last-child(-n+2) { border-bottom: none; }
.svc-full-num {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 10px;
}
.svc-full-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.svc-full-desc { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ---- GALLERY ---- */
.gallery-section { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 10px;
  margin-top: 32px;
}
.gal-item {
  border-radius: 7px;
  overflow: hidden;
  background: var(--border);
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gal-item:hover img { transform: scale(1.05); }
.gal-item.tall { grid-row: span 2; }

/* ---- BEFORE / AFTER ---- */
.ba-section { background: var(--white); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.ba-card { position: relative; border-radius: 8px; overflow: hidden; }
.ba-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.ba-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 10px;
  border-radius: 4px;
}

/* ---- CONTACT PAGE ---- */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info-head { margin-bottom: 4px; }
.contact-lines { margin-top: 28px; }
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-line:first-child { border-top: 1px solid var(--border); }
.cl-icon { font-size: 17px; flex-shrink: 0; margin-top: 2px; }
.cl-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 3px;
}
.cl-val { font-weight: 700; color: var(--ink); font-size: 15px; }
.cl-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }

.areas-block { margin-top: 36px; }
.areas-block h3 { margin-bottom: 14px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.area-chip {
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 6px;
}

/* ---- FORM ---- */
.quote-form-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
}
.quote-form-wrap h3 { font-size: 21px; margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.form-grid { display: grid; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

label {
  display: grid;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
input, select, textarea {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 7px;
  padding: 11px 13px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(42, 92, 63, 0.1);
}
textarea { min-height: 110px; resize: vertical; }
.submit-btn { width: 100%; height: 48px; font-size: 15px; }

/* ---- MOBILE HAMBURGER ---- */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s;
}
.mobile-menu {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.active,
.mobile-menu a:hover { color: var(--green); }

/* ---- MOBILE CTA BAR ---- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  gap: 8px;
  backdrop-filter: blur(12px);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { height: 360px; }
  .services-row { grid-template-columns: 1fr; }
  .svc-box { border-right: none; border-bottom: 1px solid var(--border); }
  .svc-box:last-child { border-bottom: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .svc-full-item { border-right: none; }
  .svc-full-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .svc-full-item:last-child { border-bottom: none; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gal-item.tall { grid-row: auto; }
  .ba-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }
  .hero { padding: 50px 0 60px; }
  .hero-img { height: 280px; }
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gal-item, .gal-item.tall { height: 220px; }
  .mobile-cta-bar { display: flex; }
  .demo-badge, .back-btn { display: none; }
  .top-strip .hide-mobile { display: none; }
  .bio-inner { flex-direction: column; align-items: flex-start; }
}
