/* =================================================================
   RJ Gardening — Stylesheet
   Theme colours derived from the brand logo (greens + cream)
   ================================================================= */

:root {
  /* Brand palette — sampled from the RJ Gardening gecko + "RJ" logo
     (leaf green, charcoal wordmark, cream/white field) */
  --green-900: #16331a;   /* deep canopy — dark sections */
  --green-800: #1d4421;
  --green-700: #2c6a2c;   /* forest */
  --green-600: #3a8231;
  --green-500: #4f9c3c;   /* signature leaf green (logo) */
  --green-400: #6cb557;
  --green-100: #e9f2e3;
  --sage:      #eef3e7;   /* soft tinted section background */
  --sage-200:  #dde7d2;
  --cream:     #f7f5ee;   /* paper / off-white field */
  --cream-200: #ece8db;
  --sand:      #d9d0b8;
  --charcoal:  #1c1f1a;   /* the "RJ" wordmark black */
  --ink:       #20241d;   /* body text */
  --muted:     #5d6a57;
  --white:     #ffffff;
  --gold:      #c79a4e;   /* subtle accent / star ratings */

  --shadow-sm: 0 2px 8px rgba(22, 51, 26, .08);
  --shadow-md: 0 10px 30px rgba(22, 51, 26, .12);
  --shadow-lg: 0 24px 60px rgba(22, 51, 26, .18);

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;

  --font-head: 'Zilla Slab', 'Roboto Slab', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  color: var(--green-900);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.35rem; }

p { color: var(--ink); }
a { color: var(--green-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green-500); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--green-500);
  font-family: var(--font-body);
  margin-bottom: .8rem;
  display: inline-block;
}

.section { padding: 88px 0; }
.section--tight { padding: 60px 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--green { background: var(--green-900); color: var(--cream); }
.section--green h2, .section--green h3 { color: var(--white); }
.section--green p { color: rgba(255,255,255,.82); }

.text-center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 640px; }
.text-center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  font-family: var(--font-body);
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-500); color:#fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; border-color: var(--green-700); color: var(--green-700); }
.btn--ghost:hover { background: var(--green-700); color: #fff; }
.btn--light { background: var(--cream); color: var(--green-900); }
.btn--light:hover { background:#fff; transform: translateY(-2px); }
.btn--outline-light { border-color: rgba(255,255,255,.6); color:#fff; }
.btn--outline-light:hover { background:#fff; color: var(--green-900); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,244,236,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--cream-200);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-sm); }
.brand-name { font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; color: var(--green-900); line-height: 1; }
.brand-tag { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green-500); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: .98rem; }
.nav-links a:hover, .nav-links a.active { color: var(--green-500); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-weight: 700; color: var(--green-900); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--green-900); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex; align-items: center;
  color: #fff;
  background: #2e6b40 center/cover no-repeat;
}
.hero__inner { max-width: 720px; padding: 70px 0; }
.hero h1 { color: #fff; }
.hero p { color: rgba(255,255,255,.92); font-size: 1.2rem; margin: 22px 0 32px; max-width: 560px; }
.hero .btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__badges { display: flex; gap: 22px; margin-top: 40px; flex-wrap: wrap; }
.hero__badge { display: flex; align-items: center; gap: 9px; font-size: .92rem; color: rgba(255,255,255,.9); font-weight: 500; }
.hero__badge svg { flex: none; }

/* ---------- Service / feature cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-200);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--green-100); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 22px 22px 26px; }
.card__body h3 { margin-bottom: 8px; }
.card__body p { color: var(--muted); font-size: .96rem; }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--green-100); color: var(--green-700);
  display: grid; place-items: center; margin-bottom: 16px;
}

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.split__content h2 { margin-bottom: 18px; }
.split__content p + p { margin-top: 16px; }

.checklist { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before {
  content: ""; flex: none; margin-top: 3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat__num { font-family: var(--font-head); font-size: 2.6rem; color: var(--green-500); font-weight: 600; }
.section--green .stat__num { color: var(--green-400); }
.stat__label { font-size: .92rem; color: var(--muted); letter-spacing: .04em; }
.section--green .stat__label { color: rgba(255,255,255,.7); }

/* ---------- Gallery ---------- */
.gallery-grid { columns: 3; column-gap: 18px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; position: relative; background:#000;
}
.gallery-item img, .gallery-item video { width: 100%; display: block; transition: transform .5s ease, opacity .3s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .play-badge {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(20,54,31,.25); color:#fff; pointer-events: none;
}
.gallery-item .play-badge svg { width: 56px; height: 56px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
.gallery-cap { position:absolute; left:0; right:0; bottom:0; padding: 30px 16px 14px; color:#fff;
  background: linear-gradient(transparent, rgba(20,54,31,.85)); font-size:.85rem; opacity:0; transition:.25s; }
.gallery-item:hover .gallery-cap { opacity:1; }

/* Filter tabs */
.filters { display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-bottom:36px; }
.filter-btn { padding:9px 20px; border-radius:999px; border:1px solid var(--sand); background:#fff;
  color: var(--green-900); font-weight:600; font-size:.9rem; cursor:pointer; transition:.2s; }
.filter-btn:hover { border-color: var(--green-500); }
.filter-btn.active { background: var(--green-700); color:#fff; border-color: var(--green-700); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(12,26,16,.92); display: none;
  align-items: center; justify-content: center; z-index: 200; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img, .lightbox video { max-width: 90vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 22px; right: 28px; background: none; border: 0; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }
.lightbox__nav { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.12);
  border:0; color:#fff; width:54px; height:54px; border-radius:50%; font-size:1.8rem; cursor:pointer; }
.lightbox__nav:hover { background:rgba(255,255,255,.25); }
.lightbox__prev { left:24px; } .lightbox__next { right:24px; }

/* ---------- Recent work preview ---------- */
.work-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:16px; margin-top:44px; }
.work-tile { position:relative; border-radius: var(--radius); overflow:hidden; aspect-ratio: 4/3.2;
  box-shadow: var(--shadow-sm); display:block; background:var(--green-100); }
.work-tile img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.work-tile:hover img { transform: scale(1.07); }
.work-tile .play-badge { position:absolute; inset:0; display:grid; place-items:center; }
.work-tile .play-badge svg { width:52px; height:52px; }
@media (max-width:760px){ .work-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:460px){ .work-grid { grid-template-columns: 1fr 1fr; gap:10px; } }

/* ---------- Testimonials ---------- */
.quote-card { background:#fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); border:1px solid var(--cream-200); }
.quote-card .stars { color: var(--gold); margin-bottom: 14px; letter-spacing:2px; }
.quote-card p { font-style: italic; color: var(--ink); }
.quote-card .who { margin-top: 18px; font-weight: 700; color: var(--green-900); font-style: normal; font-size:.95rem; }
.quote-card .who span { display:block; font-weight:500; color: var(--muted); font-size:.85rem; }
.quote-card .owner-reply { margin-top: 16px; padding: 13px 15px; background: var(--cream-100, #f4f7f2); border-left: 3px solid var(--green-400, #6cb557); border-radius: 8px; font-style: normal; font-size: .88rem; color: var(--muted); line-height: 1.55; }
.quote-card .owner-reply__label { display:block; font-weight: 700; color: var(--green-900); font-size:.78rem; margin-bottom: 3px; }

/* ---------- CTA band ---------- */
.cta-band { text-align:center; }
.cta-band h2 { color:#fff; }
.cta-band p { max-width: 560px; margin: 14px auto 28px; }
.cta-band .btn-row { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.info-item { display:flex; gap:16px; margin-bottom: 22px; align-items:flex-start; }
.info-item .ic { flex:none; width:48px; height:48px; border-radius:12px; background:var(--green-100);
  color:var(--green-700); display:grid; place-items:center; }
.info-item h4 { font-family:var(--font-body); font-size:.95rem; color:var(--green-900); margin-bottom:2px; }
.info-item p, .info-item a { color: var(--muted); font-size:.98rem; }
.form { background:#fff; padding: 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border:1px solid var(--cream-200); }
.field { margin-bottom: 18px; }
.field label { display:block; font-weight:600; font-size:.9rem; margin-bottom:7px; color:var(--green-900); }
.field input, .field select, .field textarea {
  width:100%; padding: 13px 15px; border:1px solid var(--sand); border-radius:10px;
  font-family:inherit; font-size:1rem; background:var(--cream); color:var(--ink); transition:.2s; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color:var(--green-500); background:#fff; box-shadow:0 0 0 3px rgba(61,139,79,.15); }
.field textarea { resize: vertical; min-height: 130px; }

/* ---------- Footer ---------- */
.footer { background: var(--green-900); color: rgba(255,255,255,.78); padding: 64px 0 28px; }
.footer a { color: rgba(255,255,255,.78); }
.footer a:hover { color:#fff; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer .brand-name { color:#fff; }
.footer h4 { color:#fff; font-family:var(--font-body); font-size:.95rem; text-transform:uppercase; letter-spacing:.1em; margin-bottom:18px; }
.footer ul { list-style:none; display:grid; gap:11px; }
.footer .f-brand p { margin-top:16px; font-size:.92rem; max-width: 300px; color: rgba(255,255,255,.88); }
.footer .socials { display:flex; gap:12px; margin-top:18px; }
.footer .socials a { width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.1);
  display:grid; place-items:center; color:#fff; }
.footer .socials a:hover { background: var(--green-500); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); padding-top:22px; display:flex;
  justify-content:space-between; gap:14px; flex-wrap:wrap; font-size:.85rem; color:rgba(255,255,255,.85); }
.footer-bottom a { color:#fff; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { background: var(--green-900); color:#fff; padding: 84px 0 70px; text-align:center; }
.page-hero h1 { color:#fff; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 600px; margin: 14px auto 0; }
.page-hero .crumb { font-size:.85rem; color: var(--green-400); letter-spacing:.08em; text-transform:uppercase; margin-bottom:14px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity:1; transform:none; }

/* =================================================================
   Added sections, backgrounds & components
   ================================================================= */

/* ---- Extra section backgrounds for variety ---- */
.section--sage { background: var(--sage); }
.bg-dots {
  background-image: radial-gradient(var(--sage-200) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
.bg-leaf {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 10c14 6 22 18 22 32 0 0-16-2-24-12S40 10 40 10z' fill='%232c6a2c' fill-opacity='0.04'/%3E%3Cpath d='M20 50c10 2 18 9 20 20 0 0-12 1-18-6s-2-14-2-14z' fill='%232c6a2c' fill-opacity='0.035'/%3E%3C/svg%3E");
}
.band-img { position: relative; background-size: cover; background-position: center; }

/* ---- Decorative panel container ---- */
.panel {
  background: #fff; border: 1px solid var(--cream-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 34px;
}
.panel--green { background: var(--green-900); color: var(--cream); border: none; }
.panel--green h3 { color: #fff; }

/* ---- Before / After ---- */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 46px; }
.ba-card {
  background: #fff; border: 1px solid var(--cream-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .22s ease, box-shadow .22s ease;
}
.ba-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.ba-fig { position: relative; margin: 0; aspect-ratio: 4/3.6; overflow: hidden; cursor: pointer; background: #0a160c; }
.ba-fig img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ba-fig:hover img { transform: scale(1.06); }
.ba-tag {
  position: absolute; top: 10px; left: 10px; font-size: .68rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.ba-tag--before { background: rgba(28,31,26,.85); }
.ba-tag--after { background: var(--green-600); }
.ba-cap { padding: 16px 20px 20px; color: var(--muted); font-size: .95rem; line-height: 1.5; }

/* ---- Service area chips ---- */
.areas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 36px; }
.area-chip {
  background: #fff; border: 1px solid var(--sage-200); border-radius: 999px; padding: 11px 20px;
  font-weight: 600; color: var(--green-900); font-size: .95rem; display: inline-flex; gap: 8px; align-items: center;
  box-shadow: var(--shadow-sm); transition: border-color .2s, transform .2s;
}
.area-chip:hover { border-color: var(--green-500); transform: translateY(-2px); }
.area-chip svg { color: var(--green-500); flex: none; }

/* ---- Seasonal care ---- */
.season-tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-600); background: var(--green-100); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}

/* ---- FAQ accordion ---- */
.faq { max-width: 840px; margin: 44px auto 0; display: grid; gap: 14px; }
.faq details {
  background: #fff; border: 1px solid var(--cream-200); border-radius: 14px; padding: 2px 24px;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary {
  cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--green-900);
  padding: 18px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.6rem; color: var(--green-500); line-height: 1; flex: none; }
.faq details[open] summary::after { content: '\2013'; }
.faq details p { padding: 0 0 20px; color: var(--muted); margin: 0; }

/* ---- Inline stat band over image ---- */
.imgband { position: relative; background-size: cover; background-position: center; }
.imgband::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(22,51,26,.88), rgba(22,51,26,.92)); }
.imgband > .container { position: relative; z-index: 1; }

/* ---- Pull quote / brand voice ---- */
.pullquote { max-width: 880px; margin: 0 auto; text-align: center; }
.pullquote p { font-family: var(--font-head); font-size: clamp(1.4rem, 2.6vw, 2.05rem); line-height: 1.32; color: #fff; font-weight: 500; }
.pullquote .src { display: block; margin-top: 18px; font-family: var(--font-body); font-size: .9rem; letter-spacing: .04em; color: var(--green-400); text-transform: uppercase; }

/* ---- Mini feature row ---- */
.mini-feats { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 40px; }
.mini-feat { display: flex; gap: 14px; align-items: flex-start; }
.mini-feat .mf-ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; }
.mini-feat h4 { font-family: var(--font-body); font-size: 1rem; color: var(--green-900); margin-bottom: 3px; }
.mini-feat p { font-size: .92rem; color: var(--muted); }
@media (max-width: 760px) { .mini-feats { grid-template-columns: 1fr; } .ba-grid { grid-template-columns: 1fr; } }

/* =================================================================
   Maintenance packages (services page)
   ================================================================= */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; align-items: stretch; }
.plan-card {
  background: #fff; border: 2px solid var(--sage-200); border-radius: var(--radius-lg);
  padding: 36px 28px 32px; text-align: center; position: relative;
  display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--green-500); }
.plan-card.popular { border-color: var(--green-600); box-shadow: var(--shadow-md); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green-600); color: #fff; font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.plan-freq { font-family: var(--font-head); font-size: 1.7rem; color: var(--green-900); line-height: 1.1; }
.plan-tagline { color: var(--green-600); font-weight: 700; font-size: .88rem; margin-top: 5px; letter-spacing: .02em; }
.plan-price { font-family: var(--font-head); font-size: 2.3rem; color: var(--green-700); margin: 16px 0 2px; line-height: 1; }
.plan-price small { font-size: .9rem; color: var(--muted); font-weight: 400; font-family: var(--font-body); }
.plan-desc { color: var(--muted); font-size: .95rem; margin: 8px 0 6px; }
.plan-list { list-style: none; text-align: left; display: grid; gap: 11px; margin: 20px 0 26px; padding: 20px 0 0; border-top: 1px solid var(--cream-200); }
.plan-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .94rem; color: var(--ink); }
.plan-list li::before {
  content: ""; flex: none; margin-top: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}
.plan-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* =================================================================
   Reviews (homepage) — Google badge
   ================================================================= */
.reviews-head { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.google-badge {
  display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--cream-200);
  border-radius: 999px; padding: 8px 18px; box-shadow: var(--shadow-sm); font-weight: 600; color: var(--green-900); font-size: .92rem;
}
.google-badge .stars { color: var(--gold); letter-spacing: 1px; }
.quote-card .gicon { position: absolute; top: 22px; right: 22px; width: 22px; height: 22px; opacity: .9; }
.quote-card { position: relative; }

/* =================================================================
   Community / sponsorship
   ================================================================= */
.impact-panel { margin-top: 46px; }
.impact-panel .stats { margin-top: 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.team-tile { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm); display: block; background: var(--green-100); cursor: pointer; }
.team-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-tile:hover img { transform: scale(1.06); }
@media (max-width: 760px) { .team-grid { grid-template-columns: 1fr 1fr; } .plans { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }
@media (max-width: 460px) { .team-grid { grid-template-columns: 1fr; } }

/* =================================================================
   Nav dropdown (Services submenu) — hover on desktop
   ================================================================= */
.has-dropdown { position: relative; }
.dd-toggle { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.dd-caret { transition: transform .25s ease; margin-top: 1px; flex: none; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 252px;
  background: #fff; border: 1px solid var(--cream-200); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 8px; list-style: none;
  display: grid; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s; z-index: 60;
}
.has-dropdown:hover > .dropdown, .has-dropdown:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: none;
}
.has-dropdown:hover .dd-caret { transform: rotate(180deg); }
.dropdown li { width: auto; border: none; }
.dropdown a { display: block; padding: 10px 14px; border-radius: 9px; font-size: .93rem; color: var(--ink); font-weight: 500; }
.dropdown a:hover { background: var(--green-100); color: var(--green-700); }

/* Anchor offset so the sticky header never covers a jumped-to service */
[id] { scroll-margin-top: 96px; }

/* =================================================================
   Owner intro portrait (About page)
   ================================================================= */
.owner-intro { text-align: center; }
.owner-photo {
  width: 320px; height: 320px; max-width: 82%;
  object-fit: cover; margin: 0 auto; display: block;
  /* photo is feathered onto the section's white background so its edge
     dissolves into the page — no hard ring/border/shadow. */
  border-radius: 0; box-shadow: none; aspect-ratio: auto;
}
.owner-name { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--green-900); margin-top: 22px; }
.owner-role { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--green-500); margin-top: 2px; }

/* =================================================================
   Achievements / impact row (homepage)
   ================================================================= */
.achievements { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 12px; }
.ach-item { display: flex; align-items: center; gap: 16px; }
.ach-ic {
  flex: none; width: 60px; height: 60px; border-radius: 16px;
  background: var(--green-100); color: var(--green-700);
  display: grid; place-items: center;
}
.ach-num { font-family: var(--font-head); font-size: 2.1rem; font-weight: 600; color: var(--green-900); line-height: 1; }
.ach-label { font-size: .95rem; color: var(--muted); margin-top: 3px; }
@media (max-width: 900px) { .achievements { grid-template-columns: repeat(2, 1fr); gap: 30px 22px; } }
@media (max-width: 460px) { .achievements { grid-template-columns: 1fr; } }

/* =================================================================
   Mobile header — compact call button, tidy brand
   ================================================================= */
.nav-call { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2; }
}
@media (max-width: 760px) {
  .nav-links { position: fixed; inset: 76px 0 auto 0; background: var(--cream);
    flex-direction: column; gap:0; padding: 10px 24px 24px; box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .3s ease; }
  .nav-links.open { transform: none; }
  .nav-links li { width:100%; border-bottom:1px solid var(--cream-200); }
  .nav-links a { display:block; padding: 14px 0; }
  .nav-toggle { display: flex; }
  .nav .btn--primary.nav-quote { display:none; }
  /* Swap the long phone number for a compact call button so the
     header reads cleanly and never wraps on small screens */
  .nav-phone { display: none; }
  .nav-call { display: inline-grid; place-items: center; width: 42px; height: 42px;
    border-radius: 50%; background: var(--green-100); color: var(--green-700); flex: none; }
  .nav-call:hover { background: var(--green-500); color: #fff; }
  .nav-actions { gap: 10px; }
  .brand { min-width: 0; }
  .brand span { min-width: 0; }
  /* Services dropdown becomes a tap-to-expand accordion on mobile */
  .has-dropdown { width: 100%; }
  .dd-toggle { display: flex; justify-content: space-between; width: 100%; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent; padding: 0;
    min-width: 0; margin: 0; display: none;
  }
  .has-dropdown.open > .dropdown { display: grid; }
  .has-dropdown.open .dd-caret { transform: rotate(180deg); }
  .dropdown a { padding: 12px 0 12px 18px; font-size: .95rem; color: var(--muted); }
  .dropdown a:hover { background: transparent; color: var(--green-700); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 30px 18px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap:28px; }
  .gallery-grid { columns: 1; }
  .section { padding: 60px 0; }
  .hero { min-height: 78vh; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero__badges { gap: 14px; }
  /* Keep the brand on one tidy block on the smallest phones */
  .brand img { width: 40px; height: 40px; }
  .brand-name { font-size: 1.1rem; }
  .brand-tag { font-size: .62rem; letter-spacing: .1em; }
  .nav { height: 68px; }
  .nav-links { inset: 68px 0 auto 0; }
}

/* =================================================================
   Accordion / dropdown — Community impact statements
   ================================================================= */
.accordion { max-width: 780px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 14px; }
.acc-item { background: #fff; border: 1px solid var(--sage-200); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .25s, border-color .25s; }
.acc-item.open { box-shadow: var(--shadow-md); border-color: var(--green-300, #9cc48a); }
.acc-head { width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.acc-head .who { display: flex; flex-direction: column; }
.acc-head .who b { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--green-900); }
.acc-head .who small { font-weight: 700; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-500); margin-top: 3px; }
.acc-caret { flex: none; color: var(--green-500); transition: transform .3s ease; }
.acc-item.open .acc-caret { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-item.open .acc-body { max-height: 360px; }
.acc-body p { margin: 0; padding: 0 22px 22px; color: var(--muted); line-height: 1.65; }
