/* ===========================================================================
   JDS Landscape Group — landing page styles
   Mobile-first. Palette: logo green + cream + charcoal.
   =========================================================================== */
:root {
  --green: #0b7a07;
  --green-dark: #075304;
  --green-deep: #04340a;
  --cream: #f7f4ec;
  --cream-2: #efe9da;
  --card: #fffdf8;
  --ink: #1c2118;
  --muted: #57604f;
  --line: #ddd6c4;
  --white: #ffffff;
  --gold: #d8a13a;
  --shadow: 0 6px 24px rgba(20, 30, 15, .12);
  --radius: 12px;
  --maxw: 1140px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: var(--green-dark); }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; color: var(--green-deep); }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ----- Buttons ----- */
.btn {
  display: inline-block; font-weight: 700; text-decoration: none;
  padding: 14px 26px; border-radius: 999px; transition: transform .12s ease, background .2s;
  border: 2px solid transparent; cursor: pointer; font-size: 1rem;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.85); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }

/* ----- Header ----- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,236,.96); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 20px; max-width: var(--maxw); margin: 0 auto; }
.brand img { height: 62px; width: auto; }
.nav { display: none; }
.nav a { text-decoration: none; color: var(--ink); font-weight: 600; margin-left: 22px; font-size: .98rem; }
.nav a:hover { color: var(--green); }
.header-phone { text-align: right; font-weight: 800; }
.header-phone .label { display: block; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.header-phone .phone { font-size: 1.15rem; color: var(--green-dark); white-space: nowrap; }
.header-phone .phone a { text-decoration: none; color: inherit; }

.nav-toggle { display: none; }

/* ----- Hero ----- */
.hero {
  position: relative; color: #fff; text-align: center;
  background-color: var(--cream-2);
  background-image: linear-gradient(rgba(4,30,6,.62), rgba(4,30,6,.72)), url('assets/photos/hero.jpg');
  background-size: cover; background-position: center;
}
.noscript-note { text-align: center; padding: 14px; background: var(--green-deep); color: #fff; margin: 0; }
.hero .container { padding-top: 56px; padding-bottom: 64px; }
.hero h1 { color: #fff; font-size: 2rem; margin: 0 0 14px; text-shadow: 0 2px 14px rgba(0,0,0,.4); }
.hero .tagline { font-size: 1.05rem; max-width: 640px; margin: 0 auto 10px; color: #f2efe6; }
.eyebrow { display: inline-block; letter-spacing: .18em; text-transform: uppercase; font-size: .72rem; font-weight: 700; color: #cfe8c4; margin-bottom: 14px; }

/* Hero service chips */
.hero-services {
  list-style: none; padding: 0; margin: 18px auto 4px; max-width: 760px;
  display: flex; flex-wrap: wrap; gap: 8px 10px; justify-content: center;
}
.hero-services li {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px; padding: 7px 16px; font-weight: 600; font-size: .92rem;
  color: #f3f8ee; backdrop-filter: blur(2px); white-space: nowrap;
}
.hero-services li::before { content: "✦"; color: var(--gold); margin-right: 7px; font-size: .8em; }

/* Phone call-to-action — the dominant element */
.phone-cta {
  margin: 26px auto 22px; background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius);
  padding: 18px 20px; max-width: 460px;
}
.phone-cta .call-label { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: #d9efce; }
.phone-cta .phone {
  font-family: var(--font-display); font-weight: 700; line-height: 1.05;
  font-size: clamp(2.4rem, 9vw, 3.6rem); color: #fff; letter-spacing: .01em;
  display: block; margin: 4px 0 2px;
}
.phone-cta .phone a { color: #fff; text-decoration: none; }
.phone-cta .sub { font-size: .92rem; color: #eef3e6; }
.hero-actions { margin-top: 8px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.trust-row { margin-top: 22px; display: flex; gap: 10px 22px; justify-content: center; flex-wrap: wrap; font-size: .9rem; color: #eaf2e2; }
.trust-row span::before { content: "✓"; color: var(--gold); font-weight: 900; margin-right: 6px; }

/* ----- Sections ----- */
section { padding: 60px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 38px; }
.section-head h2 { font-size: 1.9rem; margin: 0 0 10px; }
.section-head p { color: var(--muted); margin: 0; }
.alt { background: var(--cream-2); }

/* ----- Services ----- */
.services-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
.service-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.alt .service-card { background: var(--card); }
.service-card img { width: 100%; height: 210px; object-fit: cover; }
.service-card .body { padding: 22px 22px 26px; }
.service-card h3 { font-size: 1.3rem; margin: 0 0 10px; }
.service-card p { margin: 0 0 14px; color: var(--muted); }
.service-card ul { margin: 0; padding-left: 18px; color: var(--ink); }
.service-card ul li { margin-bottom: 4px; }

/* ----- Gallery ----- */
.gallery { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.gallery img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 10px; background: var(--cream-2); }

/* ----- About / trust ----- */
.about-grid { display: grid; gap: 30px; grid-template-columns: 1fr; align-items: center; }
.about-text h2 { font-size: 1.9rem; margin-top: 0; }
.about-text p { color: var(--muted); }
.feature-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; }
.feature-list .ic { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 900; }
.feature-list strong { display: block; }
.feature-list span { color: var(--muted); font-size: .95rem; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 340px; object-fit: cover; }

/* ----- Service area ----- */
.area { background: var(--green-deep); color: #eef3e6; text-align: center; }
.area h2 { color: #fff; }
.area p { color: #d6e4cd; max-width: 720px; margin: 0 auto 22px; }
.area-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; list-style: none; padding: 0; margin: 0; }
.area-list li { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 8px 18px; font-weight: 600; }

/* ----- Contact band ----- */
.contact-band { background: var(--green); color: #fff; text-align: center; }
.contact-band h2 { color: #fff; font-size: 1.8rem; margin: 0 0 8px; }
.contact-band p { color: #eaf6e3; margin: 0 0 18px; }
.contact-band .phone { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 8vw, 3rem); display: block; margin-bottom: 6px; }
.contact-band .phone a { color: #fff; text-decoration: none; }
.hours { font-size: .95rem; color: #eafadf; }

/* ----- Footer ----- */
.site-footer { background: var(--ink); color: #c8cfbf; padding: 40px 0 28px; font-size: .92rem; }
.footer-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
.site-footer h4 { color: #fff; margin: 0 0 10px; font-family: var(--font-body); font-size: .95rem; letter-spacing: .04em; }
.site-footer a { color: #d7decd; }
.site-footer .phone { font-weight: 800; color: #fff; }
.footer-bottom { border-top: 1px solid #333a2c; margin-top: 28px; padding-top: 18px; text-align: center; color: #97a08b; font-size: .85rem; }

/* ===== Responsive ===== */
@media (min-width: 700px) {
  .hero h1 { font-size: 2.8rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1.1fr .9fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .nav { display: flex; align-items: center; }
  .hero h1 { font-size: 3.2rem; }
  .hero .container { padding-top: 84px; padding-bottom: 96px; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
