/* ========================
   ROOT & RESET
======================== */
:root {
  --bg: #f8faf6;
  --bg2: #eef4e8;
  --dark: #182214;
  --dark2: #243320;
  --text: #182214;
  --text-muted: #4a6040;
  --text-light: #7a9870;
  --accent: #2d5a1b;
  --accent2: #3d7a25;
  --accent-light: #eaf4e2;
  --accent-mid: #b8d9a8;
  --light-green: #a8d878;
  --border: #d8eaca;
  --font-serif: 'Playfair Display', serif;
  --font: 'DM Sans', sans-serif;
  --nav-h: 68px;
  --shadow: 0 2px 16px rgba(24,34,20,0.07);
  --shadow-md: 0 6px 28px rgba(24,34,20,0.12);
  --shadow-lg: 0 12px 48px rgba(24,34,20,0.16);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.7;
}

/* ========================
   NAV
======================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: var(--dark);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
}
.nav-logo-dot {
  width: 5px; height: 5px;
  background: var(--light-green);
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-logo-sub {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 7px 14px;
  transition: color 0.15s;
  letter-spacing: 0.2px;
}
.nav-link:hover { color: white; }
.nav-link.active { color: var(--light-green); }
.nav-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--light-green);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: opacity 0.15s;
}
.nav-phone:hover { opacity: 0.8; }

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: white;
  transition: all 0.2s;
}
.nav-burger-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger-open span:nth-child(2) { opacity: 0; }
.nav-burger-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================
   PAGE SYSTEM
======================== */
.page-section {
  display: none;
  min-height: 100vh;
  padding-top: var(--nav-h);
}
.page-section.active { display: block; }

/* ========================
   HERO — SPLIT
======================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}
.hero-left {
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: 80px 64px 80px 48px;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,90,27,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left-content { position: relative; z-index: 1; max-width: 480px; }
.hero-overline {
  font-size: 11px;
  font-weight: 600;
  color: var(--light-green);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--light-green);
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 48px;
}
.hero-badges {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
}
.hero-badge-item { text-align: center; padding: 0 28px; }
.hero-badge-item:first-child { padding-left: 0; }
.hero-badge-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--light-green);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-badge-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.hero-badge-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.1);
}
.hero-right {
  background: var(--accent);
  overflow: hidden;
}
.hero-img-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 3px;
}
.hero-img { background-size: cover; background-position: center; }
.hero-img-main {
  grid-row: span 2;
  background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=800&q=85');
}
.hero-img-sm1 {
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=400&q=80');
}
.hero-img-sm2 {
  background-image: url('https://images.unsplash.com/photo-1589923188651-268a9765e432?w=400&q=80');
}

/* ========================
   BUTTONS
======================== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 13px 28px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent2); }
.btn-text-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.15s;
}
.btn-text-link:hover { color: white; }
.btn-primary-light {
  display: inline-block;
  background: white;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 13px 28px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-primary-light:hover { background: var(--accent-light); }
.btn-submit {
  background: var(--accent);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 14px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.15s;
  width: 100%;
  font-family: var(--font);
}
.btn-submit:hover { background: var(--accent2); }

/* ========================
   SERVICES STRIP
======================== */
.services-strip {
  background: var(--dark2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.services-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.strip-item {
  cursor: pointer;
  transition: background 0.2s;
  border-right: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: rgba(255,255,255,0.04); }
.strip-item-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}
.strip-item:hover .strip-item-img { transform: scale(1.04); }
.strip-lawn {
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=400&q=75');
}
.strip-landscape {
  background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=400&q=75');
}
.strip-snow {
  background-image: url('https://images.unsplash.com/photo-1547754980-3df97fed72a8?w=400&q=75');
}
.strip-cleanup {
  background-image: url('https://images.unsplash.com/photo-1500651230702-0e2d8a49d4ad?w=400&q=75');
}
.strip-item-label {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3px;
}

/* ========================
   ABOUT SPLIT
======================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-split-img {
  background:
    url('https://images.unsplash.com/photo-1589923188651-268a9765e432?w=1000&q=80') center/cover no-repeat;
  min-height: 560px;
}
.about-split-content {
  background: var(--bg);
  padding: 80px 64px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label.light { color: var(--light-green); }
.about-split-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  line-height: 1.2;
}
.about-split-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 300;
}
.about-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 28px;
}
.about-cred {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
}

/* ========================
   SEASONAL
======================== */
.seasonal-section {
  background: var(--bg2);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.seasonal-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.seasonal-header { margin-bottom: 40px; }
.seasonal-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.5px;
  margin-top: 10px;
}
.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.seasonal-card {
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}
.seasonal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.seasonal-card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
}
.seasonal-spring { background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=400&q=80'); }
.seasonal-summer { background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=400&q=80'); }
.seasonal-fall { background-image: url('https://images.unsplash.com/photo-1500651230702-0e2d8a49d4ad?w=400&q=80'); }
.seasonal-winter { background-image: url('https://images.unsplash.com/photo-1547754980-3df97fed72a8?w=400&q=80'); }
.seasonal-card-body { padding: 20px 18px; }
.seasonal-card-season {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.seasonal-card-body ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.seasonal-card-body ul li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}
.seasonal-card-body ul li::before {
  content: '';
  width: 12px; height: 1.5px;
  background: var(--accent-mid);
  flex-shrink: 0;
}

/* ========================
   TESTIMONIALS
======================== */
.testimonials-section {
  background: var(--dark);
  padding: 80px 0;
}
.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.testimonials-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: white;
  margin-bottom: 40px;
  margin-top: 10px;
  letter-spacing: -0.5px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  border-top: 2px solid var(--accent);
  padding-top: 24px;
}
.testimonial-stars {
  color: var(--light-green);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial p {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ========================
   CTA BANNER
======================== */
.cta-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}
.cta-banner-img {
  background:
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=900&q=80') center/cover no-repeat;
}
.cta-banner-content {
  background: var(--accent);
  padding: 56px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-banner-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1.2;
}
.cta-banner-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  font-weight: 300;
}

/* ========================
   PAGE HEADER
======================== */
.page-header {
  background: var(--dark);
  padding: 64px 48px 56px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1400&q=40') center/cover no-repeat;
  opacity: 0.06;
}
.page-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-header-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--light-green);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.05;
}
.page-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  font-weight: 300;
}

/* ========================
   SERVICES PAGE
======================== */
.svc-blocks { border-bottom: 1px solid var(--border); }
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  border-bottom: 1px solid var(--border);
}
.svc-block:last-child { border-bottom: none; }
.svc-block-flip .svc-block-img { order: 2; }
.svc-block-flip .svc-block-body { order: 1; }
.svc-block-img {
  background-size: cover;
  background-position: center;
}
.svc-img-lawn { background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=900&q=80'); }
.svc-img-landscape { background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=900&q=80'); }
.svc-img-snow { background-image: url('https://images.unsplash.com/photo-1547754980-3df97fed72a8?w=900&q=80'); }
.svc-img-cleanup { background-image: url('https://images.unsplash.com/photo-1500651230702-0e2d8a49d4ad?w=900&q=80'); }
.svc-block-body {
  background: var(--bg);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-block-season {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: var(--accent-light);
  display: inline-block;
  padding: 3px 12px;
  border: 1px solid var(--accent-mid);
  align-self: flex-start;
}
.svc-block-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  margin-top: 10px;
  line-height: 1.2;
}
.svc-block-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
  font-weight: 300;
}
.svc-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-list li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.svc-list li::before {
  content: '';
  width: 14px; height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ========================
   PROJECTS
======================== */
.projects-section { padding: 72px 0; background: var(--bg); }
.projects-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.project-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.project-feature-img {
  height: 400px;
  background-size: cover;
  background-position: center;
}
.pf-1 { background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=900&q=80'); }
.project-feature-body { padding: 40px 40px 40px 0; }
.project-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  border: 1px solid var(--accent-mid);
}
.project-feature-body h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.project-feature-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 300;
}
.project-meta {
  display: flex;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.project-meta span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.project-card {
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}
.project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.project-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.pc-1 { background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=500&q=80'); }
.pc-2 { background-image: url('https://images.unsplash.com/photo-1589923188651-268a9765e432?w=500&q=80'); }
.pc-3 { background-image: url('https://images.unsplash.com/photo-1547754980-3df97fed72a8?w=500&q=80'); }
.project-card-body { padding: 20px 18px; }
.project-tag-sm {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  border: 1px solid var(--accent-mid);
}
.project-card-body h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.project-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  font-weight: 300;
}
.project-meta-sm {
  display: flex;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.project-meta-sm span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ========================
   ABOUT PAGE
======================== */
.about-story { padding: 80px 0; border-bottom: 1px solid var(--border); }
.about-story-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-story-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.about-story-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
  font-weight: 300;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 32px;
}
.about-stat {
  background: var(--dark);
  padding: 24px 20px;
  text-align: center;
}
.about-stat-num {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--light-green);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.about-story-img {
  height: 520px;
  background: url('https://images.unsplash.com/photo-1589923188651-268a9765e432?w=800&q=80') center/cover no-repeat;
}
.credentials-section {
  background: var(--bg2);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.credentials-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.credentials-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
  margin-top: 10px;
  letter-spacing: -0.3px;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.credential-item {
  padding: 22px 20px;
  background: white;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow);
}
.credential-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.credential-sub {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  font-weight: 300;
}
.contact-info-section {
  background: var(--dark);
  padding: 48px 0;
}
.contact-info-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.contact-info-item {}
.contact-info-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.contact-info-item a {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--light-green);
  text-decoration: none;
  transition: opacity 0.15s;
}
.contact-info-item a:hover { opacity: 0.8; }
.contact-info-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ========================
   CONTACT PAGE
======================== */
.contact-section { background: var(--bg); padding: 64px 0; }
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.contact-block { margin-bottom: 24px; }
.contact-block h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.contact-rows { display: flex; flex-direction: column; gap: 14px; }
.contact-row {}
.contact-row-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.contact-row a {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--accent);
  text-decoration: none;
}
.contact-row span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-areas h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}
.areas-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.areas-grid span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.contact-right {}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 4px; }
.form-group label {
  font-size: 11px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--border);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--accent); background: white; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0c8a0; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 10px; }
.success-msg {
  text-align: center;
  padding: 18px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  color: var(--accent);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  display: none;
}

/* ========================
   FOOTER
======================== */
footer { background: var(--dark); }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 48px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}
.footer-logo-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.75;
  max-width: 220px;
  font-weight: 300;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li { font-size: 13px; color: rgba(255,255,255,0.25); font-weight: 300; }
.footer-col ul li a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--light-green); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}
.footer-bottom a { color: var(--light-green); text-decoration: none; }
.demo-badge {
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  letter-spacing: 0.5px;
  margin-right: 6px;
  text-transform: uppercase;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-section.active > * { animation: fadeUp 0.3s ease forwards; }

/* ========================
   MOBILE
======================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 72px 40px; min-height: 500px; }
  .about-split { grid-template-columns: 1fr; }
  .about-split-img { min-height: 300px; }
  .about-split-content { padding: 56px 40px; }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner-img { height: 220px; }
  .cta-banner-content { padding: 48px 40px; }
  .svc-block { grid-template-columns: 1fr; }
  .svc-block-flip .svc-block-img { order: 1; }
  .svc-block-flip .svc-block-body { order: 2; }
  .svc-block-img { min-height: 280px; }
  .svc-block-body { padding: 48px 40px; }
  .project-feature { grid-template-columns: 1fr; }
  .project-feature-img { height: 280px; }
  .project-feature-body { padding: 32px; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-inner { grid-template-columns: repeat(2, 1fr); }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-story-img { height: 300px; }
}
@media (max-width: 960px) {
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); gap: 0; z-index: 100; }
  .nav-links.nav-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-link { display: block; padding: 12px 24px; font-size: 14px; color: rgba(255,255,255,0.6); }
  .nav-hamburger { display: flex; }
  .nav-logo { position: static; transform: none; }
  .nav-phone { display: none; }
  .services-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .seasonal-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-inner { padding: 0 20px; }
  .seasonal-inner { padding: 0 20px; }
  .projects-grid { grid-template-columns: 1fr; }
  .projects-inner { padding: 0 20px; }
  .page-header { padding: 48px 20px 40px; }
  .contact-inner { grid-template-columns: 1fr; padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 40px 20px 32px; }
  .footer-bottom { padding: 14px 20px; flex-direction: column; gap: 6px; }
  .credentials-inner { padding: 0 20px; }
  .about-story-inner { padding: 0 20px; }
  .contact-info-inner { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
}
@media (max-width: 600px) {
  .services-strip-inner { grid-template-columns: 1fr 1fr; }
  .seasonal-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .contact-info-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-left { padding: 56px 20px; }
}