/* Just Quality Lawn Care */

:root {
  --green:      #1f5c33;
  --green-deep: #123b21;
  --green-soft: #f0f5f1;
  --cream:      #faf9f5;
  --line:       #dfe6e0;
  --ink:        #16241b;
  --ink-soft:   #4f5d54;
  --white:      #ffffff;
  --gold:       #c9922e;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px;

  --shell: 1180px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  color: var(--green-deep);
}

h1 { font-size: clamp(2.2rem, 5.6vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.28rem; color: var(--ink); }

p { margin: 0; }
a { color: inherit; text-decoration: none; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--s5);
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--green); color: var(--white);
  padding: var(--s3) var(--s4); z-index: 200; font-size: 0.9rem;
}
.skip:focus { left: 0; }

:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

.label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 var(--s4);
}
.label-sm { margin-bottom: var(--s3); }
.section-head-center .label { text-align: center; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 15px var(--s6);
  border-radius: 6px;
  border: 1.5px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-deep); border-color: var(--green-deep); }

.btn-outline { background: transparent; color: var(--green-deep); border-color: var(--green); }
.btn-outline:hover { background: var(--green-soft); }

.btn-sm { padding: 10px var(--s5); font-size: 0.8rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 249, 245, 0.94);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s5);
}

.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 38px; width: auto; }

.nav { display: flex; align-items: center; gap: var(--s6); }
.nav > a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.nav > a:hover { color: var(--green); }
.header-phone { font-weight: 700 !important; color: var(--green-deep) !important; }
.nav > a.nav-cta { color: var(--white) !important; }

.burger {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 0; padding: 10px;
  flex-direction: column; justify-content: center; gap: 6px;
  cursor: pointer;
}
.burger span {
  display: block; height: 2px; width: 100%;
  background: var(--green-deep);
  transition: transform .3s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + var(--s8)) 0 var(--s8);
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(18,59,33,.94) 0%, rgba(18,59,33,.74) 32%, rgba(18,59,33,.32) 64%, rgba(18,59,33,.5) 100%),
    linear-gradient(to right, rgba(18,59,33,.7) 0%, rgba(18,59,33,.1) 60%, rgba(18,59,33,0) 100%);
}

.hero-inner { position: relative; max-width: 720px; color: var(--white); }
.hero h1 { color: var(--white); margin-bottom: var(--s5); text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero-lead {
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  color: rgba(255,255,255,.88);
  max-width: 600px;
  margin-bottom: var(--s6);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--s5);
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s4); }
.hero-actions .btn-outline { color: var(--white); border-color: rgba(255,255,255,.55); }
.hero-actions .btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

/* ---------- Trust bar ---------- */

.trust { background: var(--green-deep); }
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: var(--s6);
  padding-bottom: var(--s6);
}
.trust-item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 0 var(--s5);
  border-left: 1px solid rgba(255,255,255,.15);
  text-align: center;
}
.trust-item:first-child { border-left: 0; }
.trust-key {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--white);
}
.trust-val {
  font-size: 0.78rem;
  color: rgba(255,255,255,.65);
}

/* ---------- Sections ---------- */

.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-light { background: var(--cream); }
.section-deep  { background: var(--green-soft); }

.section-head { max-width: 680px; margin-bottom: var(--s8); }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-lead {
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin-top: var(--s4);
  max-width: 580px;
}
.section-head-center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Services ---------- */

.services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s6);
}
.service {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}
.service:hover { box-shadow: 0 12px 30px rgba(18,59,33,.08); transform: translateY(-2px); }
.service-media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--green-soft); }
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service h3 { padding: var(--s5) var(--s5) var(--s2); }
.service p { padding: 0 var(--s5) var(--s5); font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- Why choose us ---------- */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.why-copy .btn { margin-top: var(--s6); }
.why-list { list-style: none; margin: 0; padding: 0; }
.why-list li {
  display: flex;
  align-items: baseline;
  gap: var(--s4);
  padding: var(--s5) 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
  color: var(--ink);
}
.why-list li:first-child { border-top: 1px solid var(--line); }
.why-num {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--green);
  font-size: 1rem;
  flex: none;
}

/* ---------- Reviews ---------- */

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  margin-top: var(--s4);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s6);
}
.review {
  margin: 0;
  padding: var(--s6);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.review .stars { margin-bottom: var(--s4); }
.review blockquote {
  margin: 0 0 var(--s5);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink);
  flex: 1;
}
.review figcaption {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--green-deep);
}

/* ---------- Process ---------- */

.process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
.process-step {
  text-align: center;
  padding: var(--s6);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: var(--s5);
}
.process-step h3 { margin-bottom: var(--s3); }
.process-step p { font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- Service area ---------- */

.area-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
.area-hours {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: var(--s6);
}
.hours-line { font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: var(--s2); }
.hours-closed { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.contact-direct { margin-top: var(--s6); margin-bottom: var(--s6); }
.contact-line {
  display: flex;
  align-items: baseline;
  gap: var(--s5);
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--line);
}
.contact-line:first-child { border-top: 1px solid var(--line); }
.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  width: 70px;
  flex: none;
}
.contact-value {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
}
a.contact-line:hover .contact-value { color: var(--green); }

.btn-block-mobile { display: none; }

.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(28px, 4vw, 40px);
}
.field { margin-bottom: var(--s5); }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--s2);
}
.field input, .field textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  padding: 13px var(--s4);
  transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); }
.field textarea { resize: vertical; }
.form-note {
  margin-top: var(--s4);
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- Footer ---------- */

.site-footer { background: var(--green-deep); color: rgba(255,255,255,.82); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s7);
  padding-top: var(--s8);
  padding-bottom: var(--s7);
}
.footer-logo { filter: brightness(0) invert(1); }
.footer-tag { margin-top: var(--s4); font-size: 0.9rem; color: rgba(255,255,255,.62); max-width: 320px; }
.footer-heading {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s3);
}
.footer-col a, .footer-col p { display: block; font-size: 0.92rem; margin-bottom: 6px; color: rgba(255,255,255,.8); }
.footer-col a:hover { color: var(--white); }

.footer-base {
  padding-top: var(--s5);
  padding-bottom: var(--s6);
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-base p { font-size: 0.78rem; color: rgba(255,255,255,.5); }

/* ---------- Mobile call bar ---------- */

.mobile-bar { display: none; }
.mobile-bar a {
  display: block;
  text-align: center;
  padding: 16px 8px;
  font-size: 0.92rem;
  font-weight: 700;
  background: var(--green);
  color: var(--white);
}

/* ---------- Reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1040px) {
  .why-grid, .area-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .process { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }

  .burger { display: flex; }

  .site-header {
    background: var(--cream);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--s6);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav > a { font-size: 1.1rem; }
  .nav > a.nav-cta { margin-top: var(--s3); }

  body.nav-locked { overflow: hidden; }

  .hero { min-height: 86vh; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: var(--s5) 0; }
  .trust-item:nth-child(odd) { border-left: 0; }

  .services { grid-template-columns: 1fr; }

  .btn-block-mobile { display: inline-flex; margin-top: var(--s5); width: 100%; }

  .mobile-bar { display: block; position: fixed; inset: auto 0 0 0; z-index: 90; padding-bottom: env(safe-area-inset-bottom); }
  body { padding-bottom: 54px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .shell { padding: 0 var(--s4); }
  .hero-actions .btn { flex: 1 1 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--s6); }
  .contact-line { flex-direction: column; gap: 2px; }
  .contact-line .contact-label { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
