:root {
  --green-900: #14331f;
  --green-800: #1c4a2c;
  --green-700: #276b3f;
  --green-600: #2f7d49;
  --green-500: #3d9a5b;
  --green-100: #e7f2ea;
  --stone-900: #1f2421;
  --stone-700: #3f4844;
  --stone-500: #6b7671;
  --stone-200: #e4e7e5;
  --stone-100: #f4f6f4;
  --amber: #e0a43b;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(20, 51, 31, 0.12);
  --radius: 14px;
  --wrap: 1160px;
}

* { box-sizing: border-box; }
.ic {
  width: 1.05em; height: 1.05em; display: inline-block; vertical-align: -0.16em;
  margin-right: .45em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.ic-fill { fill: currentColor; stroke: none; }
.ic-sm { width: .8em; height: .8em; margin: 0 .3em; vertical-align: -0.02em; }
.ico .ic { margin: 0; width: 1.15em; height: 1.15em; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--stone-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .logo-text { font-family: "Roboto Slab", Georgia, serif; line-height: 1.2; }
img { max-width: 100%; display: block; }
a { color: var(--green-700); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--green-800); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(17,17,17,0.96);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 76px; }
.brand { display: flex; align-items: center; }
.brand img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: #e9ede9; text-decoration: none; font-weight: 500; font-size: 0.97rem; }
.nav a:hover { color: #fff; }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-700); color: #fff; text-decoration: none;
  padding: 11px 18px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  box-shadow: var(--shadow); white-space: nowrap;
}
.header-cta:hover { background: var(--green-800); color:#fff; }
.nav a.header-cta { color: #fff; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #fff; margin: 5px 0; border-radius: 3px; transition: .25s; }

/* Hero */
.hero {
  position: relative; color: #fff; text-align: center;
  background: linear-gradient(rgba(15,32,22,0.55), rgba(15,32,22,0.72)), url("images/landscaping/landscape-lighting-trees.jpg") center/cover no-repeat;
}
.hero .wrap { padding-top: 110px; padding-bottom: 110px; }
.hero .eyebrow {
  display: inline-block; letter-spacing: .14em; text-transform: uppercase;
  font-size: .8rem; font-weight: 700; color: #d8ecdd; margin-bottom: 16px;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); margin: 0 0 16px; max-width: 900px; margin-inline: auto; }
.hero p.lede { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 680px; margin: 0 auto 30px; color: #eef5ef; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  padding: 15px 26px; border-radius: 999px; font-weight: 700; font-size: 1.02rem; border: 2px solid transparent;
}
.btn-primary { background: var(--amber); color: var(--stone-900); }
.btn-primary:hover { background: #f0b752; }
.btn-ghost { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.trust-row {
  display: flex; gap: 26px; justify-content: center; flex-wrap: wrap;
  margin-top: 34px; font-size: .95rem; color: #eaf3ec; font-weight: 500;
}
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }

/* Sections */
.section { padding: 82px 0; }
.section.alt { background: var(--stone-100); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head .kicker { color: var(--green-600); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .82rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin: 10px 0 14px; color: var(--green-900); }
.section-head p { color: var(--stone-500); font-size: 1.08rem; margin: 0; }

/* Services */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.gallery-more { text-align: center; margin: 34px 0 0; color: var(--stone-500); font-size: 1.02rem; }
.gallery-more a { color: var(--green-700); font-weight: 600; text-decoration: none; }
.gallery-more a:hover { text-decoration: underline; }
.card {
  background: #fff; border: 1px solid var(--stone-200); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(20,51,31,.18); }
.card img { height: 210px; width: 100%; object-fit: cover; }
.card .card-body { padding: 22px 22px 26px; }
.card h3 { margin: 0 0 10px; font-size: 1.3rem; color: var(--green-800); }
.card p { margin: 0; color: var(--stone-700); font-size: .98rem; }
.card .card-link { margin-top: 14px; }
.card .card-link a { color: var(--green-700); font-weight: 700; text-decoration: none; }
.card .card-link a:hover { text-decoration: underline; }

/* About / features */
.about { display: grid; grid-template-columns: 1.05fr 1fr; gap: 52px; align-items: center; }
.about img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about img.about-photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 30%; }
.about h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--green-900); margin-top: 0; }
.features { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 16px; }
.features li { display: flex; gap: 13px; align-items: flex-start; }
.features .ico {
  flex: none; width: 40px; height: 40px; border-radius: 10px; background: var(--green-100);
  color: var(--green-700); display: grid; place-items: center; font-weight: 800;
}
.features strong { display: block; color: var(--stone-900); }
.features span.sub { color: var(--stone-500); font-size: .95rem; }

/* CTA band */
.cta-band { background: var(--green-800); color: #fff; text-align: center; }
.cta-band .wrap { padding: 70px 22px; }
.cta-band h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 0 0 12px; }
.cta-band p { max-width: 620px; margin: 0 auto 28px; color: #e0efe4; font-size: 1.1rem; }
.cta-band .hero-actions { }
.phone-big { font-size: 1.4rem; font-weight: 700; margin-top: 22px; }
.phone-big a { color: #fff; text-decoration: none; border-bottom: 2px solid var(--amber); }

/* Footer */
.site-footer { background: var(--green-900); color: #cdd8d0; padding: 56px 0 26px; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer img.flogo { height: 52px; margin-bottom: 16px; background:#fff; padding:8px 12px; border-radius:8px; }
.site-footer h4 { color: #fff; font-family: "Roboto Slab", serif; margin: 0 0 14px; font-size: 1.05rem; }
.site-footer a { color: #cdd8d0; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 9px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); margin-top: 40px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: #9fb0a6; font-size: .88rem;
}

/* Sub-page hero (compact) */
.subhero {
  position: relative; color: #fff; text-align: center;
  background: linear-gradient(rgba(20,51,31,0.60), rgba(20,51,31,0.74)), var(--sub-img) center/cover no-repeat;
}
.subhero .wrap { padding: 74px 22px; }
.subhero .crumb { font-size: .85rem; color: #d8ecdd; margin-bottom: 12px; }
.subhero .crumb a { color: #d8ecdd; text-decoration: none; }
.subhero .crumb a:hover { text-decoration: underline; }
.subhero h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0 0 12px; }
.subhero p { max-width: 640px; margin: 0 auto; color: #eef5ef; font-size: 1.12rem; }

/* Prose intro block */
.prose { max-width: 780px; margin: 0 auto; }
.prose p { font-size: 1.1rem; color: var(--stone-700); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 28px 0 4px; padding: 0; list-style: none; }
.chips li {
  background: var(--green-100); color: var(--green-800); font-weight: 600; font-size: .95rem;
  padding: 8px 16px; border-radius: 999px;
}

/* Gallery grid */
.gallery-grid {
  columns: 3 300px; column-gap: 18px;
}
.gallery-grid figure { margin: 0 0 18px; break-inside: avoid; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery-grid img { width: 100%; height: auto; display: block; transition: transform .3s; }
.gallery-grid figure:hover img { transform: scale(1.04); }
@media (max-width: 720px) { .gallery-grid { columns: 2 160px; column-gap: 12px; } }

/* Floating mobile text button */
.float-text {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; display: none;
  background: var(--amber); color: var(--stone-900); text-decoration: none; font-weight: 800;
  padding: 14px 20px; border-radius: 999px; box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav {
    position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: rgba(17,17,17,0.98); border-bottom: 1px solid rgba(255,255,255,0.10); padding: 12px 22px 20px; gap: 4px;
    display: none; box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav .header-cta { margin-top: 10px; justify-content: center; }
  .nav-toggle { display: block; }
  .grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-text { display: inline-block; }
  .section { padding: 60px 0; }
}
