﻿/* =====================================================
   Sean's Lawns Garden Maintenance — Main Stylesheet
   Newquay, Cornwall
   ===================================================== */

/* === CSS Variables === */
:root {
  --green-primary:  #78b828;
  --green-dark:     #2a6010;
  --green-darker:   #1e4a08;
  --green-sage:     #9dc85e;
  --green-light:    #c5e08e;
  --green-pale:     #eef1e5;
  --cream:          #eef1e5;
  --white:          #ffffff;
  --text-dark:      #1a3810;
  --text-mid:       #525252;
  --text-grey:      #525252;
  --text-light:     #8a9a76;
  --border:         #ccd9b4;
  --gold:           #c9a84c;
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:      0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:      0 12px 48px rgba(0,0,0,0.14);
  --radius:         14px;
  --radius-lg:      22px;
  --transition:     0.3s ease;
  --font-heading:   'Clash Grotesk', sans-serif;
  --font-body:      'Be Vietnam Pro', sans-serif;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-dark);
  font-weight: 800;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { color: #525252; }

/* === Utility === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-green { color: var(--green-primary); }
.bg-cream   { background: var(--cream); }
.bg-dark    { background: var(--green-dark); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2378b828' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a9 9 0 0 0-9 9c0 4.17 2.84 7.67 6.69 8.69L12 22l2.31-2.31C18.16 18.67 21 15.17 21 11a9 9 0 0 0-9-9z'/%3E%3C/svg%3E") no-repeat center / contain;
  flex-shrink: 0;
}
.section-title {
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
/* Inline icon (leaf or arrow — no circle) */
.btn-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.btn-primary {
  background: #f0d800;
  color: #1a2800;
  padding: 14px 30px;
  box-shadow: 0 4px 18px rgba(210,217,4,0.35);
}
.btn-primary:hover {
  background: #d4be00;
  color: #1a2800;
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(210,217,4,0.35);
}
.btn-primary:hover .btn-icon { transform: translateX(3px); }
/* Hero overrides — yellow button so it pops against the green image */
.hero .btn-primary {
  background: #f0d800;
  color: #1a2800;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.hero .btn-primary:hover {
  background: #d4be00;
  color: #1a2800;
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 13px 28px;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: translateY(-2px);
}
.btn-outline-green {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
  padding: 13px 28px;
}
.btn-outline-green:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
/* CTA / secondary emphasis button */
.btn-gold {
  background: #f0d800;
  color: #1a2800;
  padding: 14px 30px;
  box-shadow: 0 4px 18px rgba(210,217,4,0.35);
}
.btn-gold:hover {
  background: #d4be00;
  color: #1a2800;
  transform: translateY(-2px);
}
.btn-gold:hover .btn-icon { transform: translateX(3px); }
/* Service card "Learn More" button */
.btn-learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.btn-learn-circle { display: none; }
.btn-learn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === TOP BAR === */
.top-bar {
  background: #eef1e8;
  border-bottom: 1px solid #dce5c8;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.77rem;
  font-family: var(--font-body);
  color: var(--text-mid);
}
.top-bar-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.top-bar-link:hover { color: var(--green-dark); }
.top-bar-sep { color: #c8d4b0; user-select: none; }
.top-bar-follow { font-weight: 600; color: var(--green-dark); font-size: 0.75rem; letter-spacing: 0.5px; }
.top-bar-social {
  width: 26px;
  height: 26px;
  background: var(--white);
  border: 1px solid #d0dbb8;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: all var(--transition);
  text-decoration: none;
}
.top-bar-social:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
}

/* === HEADER === */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow var(--transition);
}
#header.transparent { background: var(--white); }
#header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.10); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  padding: 0 48px;
  position: relative;
  border-top: 1px solid #eef2e8;
  max-width: 1380px;
  margin: 0 auto;
}

/* Logo — grid col 1, anchored left */
.logo-link {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green-dark);
  line-height: 1.15;
  white-space: nowrap;
}
.logo-name em {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Nav links — absolutely centered in header, independent of logo/contact widths */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links a {
  color: #3d4d2c;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  transition: color 0.2s;
  background: transparent;
  white-space: nowrap;
  letter-spacing: 0.1px;
}
.nav-links a:hover { color: var(--green-primary); background: transparent; }
.nav-links a.active { color: var(--green-dark); font-weight: 600; background: transparent; }

/* Right-side nav group: phone pill + CTA button */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

/* Nav CTA button — Get a Free Quote */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--green-primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}
.nav-cta-btn:hover { background: var(--green-dark); transform: translateY(-1px); }

/* Contact info block — phone — flex item, anchored right */
.nav-contact {
  display: flex;
  align-items: center;
  background: rgba(26,56,16,0.06);
  border: 1px solid rgba(26,56,16,0.12);
  border-radius: 50px;
  padding: 4px 6px;
  gap: 0;
}
.nav-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 50px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  font-family: var(--font-body);
}
.nav-contact-link:hover { color: var(--green-primary); background: rgba(26,56,16,0.05); }
.nav-contact-link svg { color: var(--green-primary); flex-shrink: 0; }
.nav-contact-sep { width: 1px; height: 16px; background: rgba(26,56,16,0.15); flex-shrink: 0; }
/* Transparent header state — contact pill keeps dark green styling to stay readable */
#header.scrolled .nav-contact, #header.mobile-open .nav-contact { background: rgba(26,56,16,0.06); border-color: rgba(26,56,16,0.12); }
#header.scrolled .nav-contact-link { color: var(--green-dark); }
#header.scrolled .nav-contact-link svg { color: var(--green-primary); }
#header.scrolled .nav-contact-sep { background: rgba(26,56,16,0.15); }

/* CTA button — absolutely right, not in flow */
.nav-cta {
  position: absolute !important;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: var(--green-dark) !important;
  color: var(--white) !important;
  padding: 10px 10px 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.2s !important;
  border: none;
}
.nav-cta:hover { background: var(--green-primary) !important; }
.nav-cta-icon {
  width: 34px;
  height: 34px;
  background: var(--green-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  color: var(--white);
}
.nav-cta:hover .nav-cta-icon { background: rgba(255,255,255,0.22); }

/* Dropdown nav */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #3d4d2c;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  user-select: none;
  white-space: nowrap;
  letter-spacing: 0.1px;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  background: transparent;
  color: var(--green-primary);
}
.nav-dropdown-toggle svg { transition: transform var(--transition); }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
/* === Mega Menu === */
.mega-menu {
  position: absolute;
  top: 86px; /* full header height — positions relative to header-inner */
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14), 0 0 0 1px rgba(26,56,16,0.07);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1001;
}
.nav-dropdown.open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Services menu — positioned relative to #header (viewport-centered) */
.nav-dropdown:has(.mega-menu--services) {
  position: static;
  display: flex;
  align-items: center;
}
.mega-menu--services {
  top: 62px;
  left: 50%;
  right: auto;
  width: 720px;
  transform: translateX(-50%) translateY(-6px);
}
.nav-dropdown.open .mega-menu--services {
  transform: translateX(-50%) translateY(0);
}

/* Areas menu — position:relative scopes it to the toggle; top:62px lands at viewport y=86 (header bottom) */
.nav-dropdown:has(.mega-menu--areas) {
  position: relative;
  display: flex;
  align-items: center;
}
.mega-menu--areas {
  top: 62px;
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(-6px);
}
.nav-dropdown.open .mega-menu--areas {
  transform: translateX(-50%) translateY(0);
}

/* Services mega inner layout */
.mega-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 8px 12px 12px;
}
.mega-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 12px;
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.18s;
}
.mega-item:hover { background: var(--green-pale); }
.mega-icon {
  width: 32px; height: 32px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green-primary);
  transition: background 0.18s, color 0.18s;
}
.mega-item:hover .mega-icon { background: var(--green-primary); color: var(--white); }

/* Free Garden Visit — dark highlight card (specificity beats .nav-links a) */
.mega-item.mega-item--free { background: var(--green-darker); }
.mega-item.mega-item--free .mega-icon { background: rgba(255,255,255,0.12); color: var(--white); }
.mega-item.mega-item--free .mega-item-body strong { color: var(--white); }
.mega-item.mega-item--free .mega-item-body span { color: rgba(255,255,255,0.72); }
.mega-item.mega-item--free:hover { background: var(--green-dark); }
.mega-item.mega-item--free:hover .mega-icon { background: rgba(255,255,255,0.22); color: var(--white); }

.mega-item-body { display: flex; flex-direction: column; gap: 2px; }
.mega-item-body strong {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  transition: color 0.18s;
}
.mega-item:hover .mega-item-body strong { color: var(--green-primary); }
.mega-item-body span { font-size: 0.77rem; color: var(--text-mid); line-height: 1.4; white-space: normal; }

/* Services CTA panel */
.mega-cta-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px 26px;
  background: var(--green-dark);
  flex: 0 0 224px;
  width: 224px;
  border-radius: 0 18px 18px 0;
}
.mega-cta-panel svg { color: var(--green-primary); flex-shrink: 0; }
.mega-cta-panel strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
}
.mega-cta-panel p { font-size: 0.79rem; color: rgba(255,255,255,0.68); line-height: 1.55; }
.mega-cta-btn {
  display: inline-block;
  background: var(--green-primary);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 4px;
}
.mega-cta-btn:hover { background: #8fcf35; }

/* Areas mega layout */
.mega-areas-header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--border);
}
.mega-areas-header strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 2px;
}
.mega-areas-header span { font-size: 0.775rem; color: var(--text-light); }
.mega-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 12px 14px;
  min-width: 310px;
}
.mega-area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--green-dark);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.mega-area-item:hover { background: var(--green-pale); color: var(--green-primary); }
.mega-area-icon {
  width: 30px; height: 30px;
  background: var(--green-pale);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green-primary);
  transition: background 0.18s, color 0.18s;
}
.mega-area-item:hover .mega-area-icon { background: var(--green-primary); color: var(--white); }
.mega-all-areas {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 14px 14px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-primary);
  text-decoration: none;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  transition: color 0.18s, background 0.18s;
}
.mega-all-areas:hover { color: var(--green-dark); background: var(--green-pale); }

/* Blog card */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.blog-card-img {
  height: 220px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.blog-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-dark);
  line-height: 1.4;
}
.blog-card p { font-size: 0.88rem; line-height: 1.7; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 16px;
  transition: gap var(--transition);
}
.blog-card:hover .blog-read-more { gap: 10px; }

/* Blog pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.blog-page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.blog-page-btn:hover,
.blog-page-btn.active {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}

/* Area page specific */
.area-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 48px;
}
.area-hero-img img { width: 100%; height: 400px; object-fit: cover; }
.area-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.area-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.area-service-card:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.area-service-icon {
  width: 48px; height: 48px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-primary);
  flex-shrink: 0;
}
.area-service-card h3,
.area-service-card h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; margin: 0; color: var(--text-dark); }
.area-service-card p { font-size: 0.85rem; line-height: 1.7; color: var(--text-mid); margin: 0; }
.area-service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-top: 4px;
}
.area-service-card .service-link svg { transition: transform var(--transition); }
.area-service-card:hover .service-link svg { transform: translateX(3px); }

/* Mega menus use position:relative on their parent .nav-dropdown (via :has()) — no static override needed */
.nav-dropdown { position: static; }

/* Hamburger — grid col 3, hidden on desktop */
.hamburger {
  justify-self: end;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px;
  z-index: 1100;
  color: var(--green-dark);
}
.hamburger-icon { display: block; }
.hamburger-close { display: none; }
.hamburger.open .hamburger-icon { display: none; }
.hamburger.open .hamburger-close { display: block; }


/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }

/* Header row: logo + close button */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
}
.mobile-nav-logo { height: 42px; width: auto; display: block; }
.mobile-nav-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-dark);
  transition: background 0.18s;
  line-height: 1;
}
.mobile-nav-close:hover { background: var(--cream); }

/* Nav body */
.mobile-nav-body { padding-bottom: 40px; }

/* Top-level links */
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 17px 24px;
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  background: none;
  cursor: pointer;
  letter-spacing: -0.2px;
  transition: color 0.18s;
  text-align: left;
}
.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--green-primary); }

/* Accordion toggle chevron */
.mobile-nav-toggle svg { flex-shrink: 0; transition: transform 0.25s ease; }
.mobile-nav-toggle[aria-expanded="true"] { color: var(--green-primary); }
.mobile-nav-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

/* Sub-menu panel */
.mobile-nav-sub {
  display: none;
  background: #f7faf2;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-sub.open { display: block; }
.mobile-nav-sub-link {
  display: block;
  padding: 13px 24px 13px 40px;
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(54,89,2,0.07);
  text-decoration: none;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav-sub-link:last-child { border-bottom: none; }
.mobile-nav-sub-link:hover { color: var(--green-primary); background: rgba(120,184,40,0.08); }

/* CTA footer */
.mobile-nav-footer { padding: 28px 24px 8px; }
.mobile-nav-cta {
  display: flex !important;
  justify-content: center;
  width: 100%;
  border-bottom: none !important;
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 980px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,24,8,0.28) 0%,
    rgba(10,24,8,0.68) 35%,
    rgba(10,24,8,0.68) 80%,
    rgba(10,24,8,0.35) 100%
  );
}
.hero::after { display: none; }
/* Decorative botanical leaf SVGs */
.hero-leaf {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero-leaf--tl {
  top: 80px;
  left: 40px;
  width: 160px;
  height: 220px;
  transform: rotate(-20deg);
}
.hero-leaf--br {
  bottom: 140px;
  right: 50px;
  width: 120px;
  height: 170px;
  transform: rotate(30deg);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  padding: 0 32px;
  margin: 0 auto;
  text-align: center;
}
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.95);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.3px;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-location svg { color: var(--green-sage); flex-shrink: 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(111,175,95,0.25);
  border: 1px solid rgba(111,175,95,0.5);
  color: var(--green-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--green-sage);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin: 0 auto 40px;
  max-width: 560px;
  line-height: 1.75;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* Hero stats strip */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: rgba(15,35,24,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  gap: 0;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.trust-item svg { color: var(--green-primary); flex-shrink: 0; }

/* Hero stats + scroll hidden */
.hero-stats { display: none; }
.hero-scroll { display: none; }

/* === FLOATING FEATURE CARD (overlaps hero bottom) === */
/* === HERO TRUST STRIP === */
.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.92);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
}
.hero-trust-item svg {
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
}


/* === SERVICES SECTION === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
  transform: translateY(-8px);
}
/* Dark green header band — far more readable than bright green */
.service-card-hd {
  background: var(--green-dark);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-card-hd svg { color: var(--white); flex-shrink: 0; }
.service-card-hd h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
.service-card-img {
  height: 210px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}
.service-card-body {
  padding: 26px 28px 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-card-body h3 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 0.91rem;
  line-height: 1.65;
  color: var(--text-mid);
}
.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-primary);
  margin-top: 16px;
  text-decoration: none;
}
.service-card .service-link svg { transition: transform var(--transition); }
.service-card:hover .service-link svg { transform: translateX(3px); }

/* === PROJECTS SECTION === */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.project-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.project-card:hover img { transform: scale(1.06); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,35,24,0.88) 0%, rgba(15,35,24,0.2) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background var(--transition);
}
.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(15,35,24,0.95) 0%, rgba(15,35,24,0.4) 60%, transparent 100%);
}
.project-overlay p {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

/* === WHY CHOOSE US === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.why-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-icon {
  width: 56px;
  height: 56px;
  background: var(--green-dark);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}
.why-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 700;
}
.why-card p { font-size: 0.9rem; }

/* === HOMEPAGE GALLERY GRID (uniform heights) === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.gallery-grid .masonry-item img {
  height: 240px;
  object-fit: cover;
  width: 100%;
}

/* === GALLERY (Masonry) === */
.masonry {
  columns: 4;
  column-gap: 16px;
  margin-top: 56px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,61,43,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay svg { color: var(--white); width: 36px; height: 36px; }

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-height: 80vh;
  max-width: 100%;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background var(--transition);
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  transition: background var(--transition);
  cursor: pointer;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-counter {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: 16px;
}

/* === BEFORE & AFTER SLIDER === */
.before-after-section { background: var(--green-darker); }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.ba-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.ba-slider {
  position: relative;
  user-select: none;
  cursor: ew-resize;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex: 1;
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
}
.ba-before img, .ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0s;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle-circle {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  color: var(--green-dark);
  font-size: 1rem;
  flex-shrink: 0;
}
.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ba-label-before {
  left: 16px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
}
.ba-label-after {
  right: 16px;
  background: var(--green-primary);
  color: var(--white);
}
.ba-caption {
  background: var(--green-dark);
  padding: 18px 24px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.ba-caption strong { color: var(--white); display: block; margin-bottom: 4px; }

/* === REVIEWS SLIDER === */
.reviews-slider-outer {
  position: relative;
  margin-top: 48px;
  padding: 0 56px;
}
.reviews-slider {
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.review-card {
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 14px -4px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reviews-prev,
.reviews-next {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 20px));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  z-index: 2;
}
.reviews-prev:hover,
.reviews-next:hover {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}
.reviews-prev { left: 0; }
.reviews-next { right: 0; }
.reviews-prev:disabled,
.reviews-next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.reviews-prev:disabled:hover,
.reviews-next:disabled:hover {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--border);
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.reviews-dot.active {
  background: var(--green-primary);
  transform: scale(1.4);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-name {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}.review-stars {
  color: #f4b400;
  font-size: 1rem;
  letter-spacing: 1px;
}
.review-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 600px) {
  .reviews-slider-outer { padding: 0 40px; }
  .reviews-prev, .reviews-next { width: 36px; height: 36px; }
}

/* === TESTIMONIALS TICKER === */
.testimonials-ticker-wrap {
  position: relative;
  margin-top: 56px;
}
.testimonials-ticker {
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.testimonials-ticker::-webkit-scrollbar { display: none; }
.testimonials-ticker.is-dragging { cursor: grabbing; user-select: none; }
.testimonials-ticker-inner {
  display: flex;
  gap: 24px;
  padding: 8px 0 24px;
  width: max-content;
}
.testimonials-ticker .testimonial-card {
  width: 360px;
  flex-shrink: 0;
}
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.testimonials-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 2px solid var(--green-light);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.testimonials-dot.active {
  background: var(--green-primary);
  border-color: var(--green-primary);
  transform: scale(1.35);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-grey);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-dark);
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.9rem; color: var(--text-dark); font-weight: 700; }
.author-info span { font-size: 0.8rem; color: var(--text-light); }
/* === BLOG SECTION HEADER === */
.blog-section-header {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 0;
}
.blog-section-header-text {
  flex: 0 0 32%;
}
.blog-section-header-text .section-title { margin-bottom: 0; }
.blog-section-desc {
  flex: 1;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
}

/* === AREAS PREVIEW === */
.areas-preview { background: var(--green-dark); }
/* Homepage chip grid — flexbox so incomplete rows centre naturally */
.areas-preview .areas-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center;
  gap: 10px;
  margin: 40px 0;
}
/* Service/section area card grid — even 5-column layout (overrides inline style) */
.section:not(.areas-preview) .areas-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  grid-auto-rows: 130px;
  gap: 16px;
  margin-top: 40px;
}
.area-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  padding: 11px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--transition);
}
.area-chip:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
}
.area-chip svg { width: 14px; height: 14px; color: var(--green-primary); flex-shrink: 0; }
.area-chip:hover svg { color: var(--white); }

/* === CTA BANNER === */
.cta-banner {
  background: var(--green-darker);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(26,56,16,0.55) 0%, rgba(14,36,6,0.82) 100%),
    url('../images/mowedlawn (2).webp') center/cover no-repeat;
  opacity: 1;
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 96px 24px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 540px; margin: 0 auto 40px; }
.cta-banner-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* CTA with photos layout (homepage only) */
.cta-banner--photos {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  align-items: center;
  gap: 32px;
  padding: 56px 48px;
}
.cta-banner--photos::before { display: none; }
.cta-banner--photos .cta-banner-inner { padding: 24px 0; }
.cta-photos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-photos img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.cta-photos img:nth-child(2) { height: 120px; }
@media (max-width: 900px) {
  .cta-banner--photos {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }
  .cta-photos {
    flex-direction: row;
  }
  .cta-photos img, .cta-photos img:nth-child(2) {
    height: 120px;
    flex: 1;
  }
  .cta-photos-right { display: none; }
}

/* === FOOTER === */
footer {
  background: var(--green-darker);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img { height: 70px; width: auto; margin-bottom: 20px; }
.footer-tagline { font-size: 0.92rem; line-height: 1.75; margin-bottom: 24px; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.12);
}
.social-link:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
}
.footer-col h3,
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover { color: var(--green-primary); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item svg { color: var(--green-primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--green-primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* Footer grass trim */
.footer-grass { width: 100%; line-height: 0; overflow: hidden; }
.footer-grass img { width: 100%; height: auto; display: block; }

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  z-index: 1050;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 22px rgba(37,211,102,0.55);
}

/* === BACK TO TOP === */
#back-to-top {
  position: fixed;
  bottom: 88px; right: 28px;
  width: 48px; height: 48px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all var(--transition);
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#back-to-top:hover { background: var(--green-dark); }

/* === ABOUT SECTION === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.about-img-wrap > img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.about-stats-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border-radius: 18px;
  padding: 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.22);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.about-stat {
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-stat:nth-child(1) { background: var(--white);         border-radius: 12px 12px 28px 12px; }
.about-stat:nth-child(2) { background: var(--green-primary); border-radius: 12px 12px 12px 28px; }
.about-stat:nth-child(3) { background: var(--green-primary); border-radius: 12px 28px 12px 12px; }
.about-stat:nth-child(4) { background: var(--white);         border-radius: 28px 12px 12px 12px; }
.about-stat-icon { color: var(--green-dark); margin-bottom: 2px; }
.about-stat:nth-child(2) .about-stat-icon,
.about-stat:nth-child(3) .about-stat-icon { color: var(--white); }
.about-stat strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}
.about-stat:nth-child(2) strong,
.about-stat:nth-child(3) strong { color: var(--white); }
.about-stat span {
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 500;
}
.about-stat:nth-child(2) span,
.about-stat:nth-child(3) span { color: rgba(255,255,255,0.85); }
.about-text-col { display: flex; flex-direction: column; align-items: flex-start; }
.about-text-col h2 { margin-bottom: 18px; }
.about-text-col > p { margin-bottom: 28px; }
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-bottom: 32px;
}
.about-photos img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap > img { height: 420px; }
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  position: relative;
  padding: 220px 0 130px;
  background-color: var(--green-darker);
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.page-hero--short { padding: 200px 0 110px; min-height: 480px; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,35,24,0.82) 0%, rgba(30,61,43,0.65) 100%);
  z-index: 1;
}
.page-hero::after { display: none; }
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 24px;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 16px; }
.page-hero-content p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 600px; margin: 0 auto 28px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--green-primary); }

/* Service detail layout (2-col intro on service/area pages) */
.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-detail-content h2 { margin-bottom: 20px; }
.service-detail-content p { margin-bottom: 16px; line-height: 1.8; }
.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-detail-img img { width: 100%; height: 460px; object-fit: cover; }

/* Features grid (what's included) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}
.feature-item:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.feature-icon {
  width: 40px; height: 40px;
  background: var(--green-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.feature-item h4 { font-size: 0.95rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 6px; }
.feature-item p { font-size: 0.85rem; margin: 0; }

/* Gallery filter buttons */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 32px 0 0;
}
.gallery-filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-grey);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.gallery-filter-btn:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
}
.gallery-filter-btn.active {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
}

/* Blog card image link */
.blog-card-img-link { display: block; height: 220px; overflow: hidden; }
.blog-card-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img-link img { transform: scale(1.06); }

/* === ABOUT PAGE === */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-stack {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 500px; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-img-accent img { width: 100%; height: 160px; object-fit: cover; }
.about-badge {
  position: absolute;
  top: 24px;
  left: -24px;
  background: var(--green-primary);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge span { display: block; font-size: 1.8rem; font-family: var(--font-heading); }
.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}
.value-item::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-primary);
  flex-shrink: 0;
}

/* === SERVICES PAGE === */
.service-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-section:last-of-type { border-bottom: none; }
.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-section-inner.reverse { direction: rtl; }
.service-section-inner.reverse > * { direction: ltr; }
.service-section-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-section-img img { width: 100%; height: 400px; object-fit: cover; }
.service-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.service-features {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-grey);
}
.service-feature svg { color: var(--green-primary); flex-shrink: 0; }

/* === AREAS PAGE === */
.areas-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.area-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
  text-align: center;
  min-height: 110px;
}
.area-card:hover {
  border-color: var(--green-primary);
  background: var(--green-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.area-card--more {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
}
.area-card--more:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.area-card.area-card--more svg { color: var(--white); margin: 0; width: 22px; height: 22px; }
.area-card svg { color: var(--green-primary); margin-bottom: 10px; display: block; margin-left: auto; margin-right: auto; }
.area-card h4 { font-size: 1rem; color: var(--text-dark); font-family: var(--font-body); font-weight: 700; margin-bottom: 4px; }
.area-card p { font-size: 0.82rem; }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 56px;
}
.map-container iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

/* === FAQ PAGE === */
.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--green-primary); }
.faq-question {
  width: 100%;
  text-align: left;
  position: relative;
  display: block;
  padding: 22px 72px 22px 28px; /* right padding makes room for absolutely-positioned icon */
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark) !important;
  background: var(--white);
  user-select: none;
  transition: background var(--transition);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.faq-question:hover { background: var(--cream); }
.faq-icon {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--green-primary);
}
.faq-item.open .faq-icon {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-50%) rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 28px;
  background: var(--cream);
}
.faq-item.open .faq-answer {
  max-height: 800px;
  padding: 20px 28px;
}
.faq-answer p { font-size: 0.95rem; line-height: 1.8; color: var(--text-mid); }

/* === CONTACT PAGE === */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(111,175,95,0.15);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-error {
  display: none;
  font-size: 0.8rem;
  color: #e53e3e;
  margin-top: 5px;
}
.form-group.has-error .form-error { display: block; }
.form-success {
  display: none;
  background: var(--green-pale);
  border: 1px solid var(--green-primary);
  color: var(--green-dark);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.contact-info-wrap { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.contact-info-card:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
}
.contact-info-icon {
  width: 50px; height: 50px;
  background: var(--green-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-primary);
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-size: 0.85rem; color: var(--text-dark); font-weight: 700; margin-bottom: 4px; }
.contact-info-text p { font-size: 0.92rem; }
.contact-info-text a { color: var(--green-primary); font-weight: 600; }
.contact-info-text a:hover { text-decoration: underline; }

/* === RESPONSIVE === */

/* Nav switches to hamburger at 1100px to prevent cramping when zoomed */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-right { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .header-inner {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    height: 72px;
  }
}

/* Small mobile: collapse phone pill to icon-only to fit alongside CTA + hamburger */
@media (max-width: 600px) {
  .nav-contact { padding: 2px 4px; }
  .nav-contact-link { font-size: 0; padding: 5px 8px; }
  .nav-contact-link svg { width: 18px; height: 18px; flex-shrink: 0; }
  .nav-cta-btn { padding: 7px 12px; font-size: 0.76rem; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } /* 2 cols on tablet */
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .area-services-grid { grid-template-columns: repeat(2, 1fr); }
  .section:not(.areas-preview) .areas-grid { grid-template-columns: repeat(5, 1fr) !important; }
  .areas-list-grid { grid-template-columns: repeat(4, 1fr); }
  .masonry { columns: 3; }
  .testimonials-ticker .testimonial-card { width: 300px; }
  .about-intro { gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px; }
  .service-detail-layout { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .logo-name { display: none; }
  .nav-cta { display: none !important; }

  .hero { min-height: 100svh; height: auto; }
  /* background-attachment: fixed is broken on iOS — disable on mobile */
  .hero-bg { background-attachment: scroll; background-position: center center; }
  .hero-content { padding: 112px 24px 32px; }
  .hero-location { margin-bottom: 16px; }
  .hero h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .hero-buttons { flex-direction: column; align-items: center; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-buttons .btn { justify-content: center; width: 100%; }

  .section { padding: 64px 0; }
  .masonry { columns: 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr; }
  .testimonials-ticker .testimonial-card { width: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-intro { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-badge { left: 16px; }
  .service-section-inner,
  .service-section-inner.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .service-detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-img img { height: 300px; }
  .features-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 140px 0 72px; min-height: auto; }
  .page-hero--short { padding: 120px 0 64px; }
  .form-row { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 28px; padding-top: 24px; }
}

@media (max-width: 768px) {
  .section:not(.areas-preview) .areas-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .area-services-grid { grid-template-columns: 1fr; }
  .areas-list-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .masonry { columns: 1; }
  .logo-link img { height: 48px; }
  .hero { min-height: 100svh; }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 3px;
}

/* === COOKIE NOTICE BANNER === */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 40, 0, 0.97);
  color: rgba(255,255,255,0.88);
  z-index: 2000;
  font-size: 0.875rem;
  line-height: 1.6;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transform: translateY(100%);
  animation: slideUpBanner 0.4s 0.8s ease forwards;
}
@keyframes slideUpBanner {
  to { transform: translateY(0); }
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-inner p {
  flex: 1;
  min-width: 260px;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
.cookie-banner-inner a {
  color: var(--green-primary);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
#cookie-accept {
  background: var(--green-primary);
  color: #1a2800;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: var(--font-heading);
  transition: background 0.2s;
}
#cookie-accept:hover { background: var(--green-sage); }
#cookie-decline {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 9px 16px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.2s, color 0.2s;
}
#cookie-decline:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

/* === PRIVACY POLICY PAGE === */
.privacy-policy-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.privacy-meta {
  font-size: 0.875rem;
  color: var(--text-mid);
  background: var(--cream);
  border-left: 3px solid var(--green-primary);
  padding: 12px 18px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 40px;
}
.privacy-policy-wrap h2 {
  font-size: 1.35rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--green-dark);
}
.privacy-policy-wrap h3 {
  font-size: 1rem;
  margin-top: 22px;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.privacy-policy-wrap p { margin-bottom: 14px; }
.privacy-policy-wrap ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.privacy-policy-wrap ul li { margin-bottom: 6px; color: #525252; }
.privacy-policy-wrap a { color: var(--green-primary); text-decoration: underline; }

/* === BLOG POST ARTICLE LAYOUT === */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
.blog-post-content {
  min-width: 0;
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.blog-post-meta time,
.blog-post-meta span { color: var(--text-mid); }

/* Article body typography */
.blog-post-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  margin-top: 48px;
  margin-bottom: 14px;
  color: var(--green-dark);
}
.blog-post-content h3 {
  font-size: 1.15rem;
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.blog-post-content p {
  margin-bottom: 18px;
  line-height: 1.85;
  color: var(--text-mid);
}
.blog-post-content ul,
.blog-post-content ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.blog-post-content ol { list-style: decimal; }
.blog-post-content li {
  margin-bottom: 8px;
  line-height: 1.75;
  color: var(--text-mid);
}
.blog-post-content strong { color: var(--text-dark); font-weight: 700; }
.blog-post-content a { color: var(--green-dark); text-decoration: underline; }
.blog-post-content a:hover { color: var(--green-primary); }

/* CTA block at end of article */
.blog-post-cta {
  margin-top: 56px;
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.blog-post-cta h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.4rem;
}
.blog-post-cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

/* Sidebar */
.blog-post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}
.sidebar-card h4 {
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sidebar-card p {
  font-size: 0.875rem;
  margin-bottom: 16px;
}
.sidebar-card ul {
  list-style: none;
  padding: 0;
}
.sidebar-card ul li {
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
}
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li a {
  font-size: 0.875rem;
  color: var(--green-dark);
  font-weight: 500;
  transition: color var(--transition);
}
.sidebar-card ul li a:hover { color: var(--green-primary); }

@media (max-width: 960px) {
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-post-sidebar { position: static; }
}
@media (max-width: 768px) {
  .blog-post-cta { padding: 28px 20px; }
  .blog-post-cta .btn { display: block; text-align: center; justify-content: center; margin-left: 0 !important; margin-top: 10px; }
}

/* Home CTA Section */
.home-cta-section {
  background: var(--cream);
  padding: 96px 0;
}
.home-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.home-cta-left h2 {
  color: var(--text-dark);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 12px 0 20px;
  line-height: 1.2;
}
.home-cta-left > p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.home-cta-trust {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.home-cta-trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-mid);
  font-size: 0.97rem;
}
.home-cta-trust li svg {
  flex-shrink: 0;
  color: var(--green-primary);
}
.home-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-decoration: none;
  transition: color var(--transition);
}
.home-cta-phone:hover { color: var(--green-primary); }
.home-cta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  border: 1px solid var(--border);
}
@media (max-width: 900px) {
  .home-cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .home-cta-section { padding: 64px 0; }
  .home-cta-card { padding: 32px 24px; }
}

/* Print */
@media print {
  #header, .hero-scroll, #back-to-top, footer { display: none; }
}
