@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700&display=swap');

/* =====================================================
   YARD DOG LANDSCAPES — Stylesheet
   ===================================================== */

:root {
  --color-bg-dark: #0f1a0e;
  --color-bg-section: #f7f4ef;
  --color-bg-white: #ffffff;
  --color-green-primary: #4a7c2f;
  --color-green-light: #6aaa3a;
  --color-tan: #c8b89a;
  --color-text-dark: #1a1a1a;
  --color-text-mid: #555555;
  --color-text-light: #ffffff;
  --color-border: #e0d9cf;

  --shadow-sm: 0 1px 2px rgba(15, 26, 14, 0.06), 0 1px 3px rgba(74, 124, 47, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 26, 14, 0.08), 0 2px 4px rgba(74, 124, 47, 0.06);
  --shadow-lg: 0 12px 28px rgba(15, 26, 14, 0.10), 0 6px 12px rgba(74, 124, 47, 0.08);
  --shadow-xl: 0 24px 48px rgba(15, 26, 14, 0.14), 0 12px 24px rgba(74, 124, 47, 0.10);

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --space-10: 96px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, picture, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; color: inherit; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-dark);
  background: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Anton', 'Arial Narrow', Impact, sans-serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--color-text-dark);
  text-transform: uppercase;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; letter-spacing: 0.01em; }

p { line-height: 1.7; color: var(--color-text-mid); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 48px; }
@media (min-width: 768px) { .section { padding-block: 80px; } }
.section-tight { padding-block: 32px; }
@media (min-width: 768px) { .section-tight { padding-block: 56px; } }

.bg-dark { background: var(--color-bg-dark); color: var(--color-text-light); }
.bg-dark p, .bg-dark li { color: rgba(255, 255, 255, 0.78); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--color-text-light); }
.bg-section { background: var(--color-bg-section); }
.bg-white { background: var(--color-bg-white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background-color 0.25s var(--ease-smooth),
              color 0.25s var(--ease-smooth),
              transform 0.25s var(--ease-spring),
              box-shadow 0.25s var(--ease-smooth),
              border-color 0.25s var(--ease-smooth);
  border: 2px solid transparent;
  cursor: pointer;
  outline: none;
}
.btn:focus-visible { outline: 2px solid var(--color-green-light); outline-offset: 3px; }

.btn-primary {
  background: var(--color-green-primary);
  color: var(--color-text-light);
  box-shadow: 0 6px 16px rgba(74, 124, 47, 0.3), 0 2px 4px rgba(15, 26, 14, 0.08);
}
.btn-primary:hover { background: var(--color-green-light); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(74, 124, 47, 0.4); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--color-text-light);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.6); transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent;
  color: var(--color-text-dark);
  border-color: var(--color-border);
}
.btn-outline-dark:hover { background: var(--color-bg-section); border-color: var(--color-green-primary); color: var(--color-green-primary); transform: translateY(-2px); }

/* ---------- Top Utility Bar (hidden on sub-pages — landing page sets the pattern) ---------- */
.utility-bar { display: none; }

/* ---------- Navbar (floating pill, dark glass — matches landing page) ---------- */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  padding-top: 24px;
}
.nav-wrap { position: relative; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 9999px;
  background: rgba(15, 26, 14, 0.45);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 8px 12px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-brand > img,
.nav-brand img:not(.nav-brand-icon) {
  /* Wrap-style: place the img inside a circle via this rule */
  height: 44px;
  width: 44px;
  object-fit: contain;
  padding: 2px;
  border-radius: 50%;
  background: var(--color-bg-section);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.nav-brand-text {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--color-bg-section);
  text-transform: none;
}
.nav-brand-text .brand-accent { color: var(--color-green-light); }
.nav-brand-paw { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  color: rgba(244, 239, 226, 0.85);
  font-size: 0.9rem;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(244, 239, 226, 0.85);
  background: transparent;
  border-radius: 0;
  transition: color 0.2s var(--ease-smooth);
}
.nav-link:hover { color: #ffffff; background: transparent; }
.nav-link:focus-visible { outline: 2px solid var(--color-green-light); outline-offset: 4px; border-radius: 4px; }
.nav-link.active { color: #ffffff; font-weight: 600; }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--color-green-light);
  border-radius: 2px;
}

.nav-item { position: relative; }
.nav-caret { color: #ffffff; font-size: 0.7rem; line-height: 1; transition: transform 0.2s var(--ease-smooth); }
.nav-item.has-dropdown:hover .nav-caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: rgba(15, 26, 14, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease-smooth), transform 0.2s var(--ease-smooth), visibility 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(244, 239, 226, 0.85);
  transition: background-color 0.18s var(--ease-smooth), color 0.18s var(--ease-smooth);
}
.dropdown a:hover { background: rgba(255, 255, 255, 0.06); color: #ffffff; }
.dropdown a.active { color: var(--color-green-light); font-weight: 600; }

.nav-cta {
  flex-shrink: 0;
  font-size: 0.875rem;
  padding: 10px 16px;
}

.hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: transparent;
  border: 0;
  color: var(--color-bg-section);
  transition: background-color 0.2s var(--ease-smooth);
}
.hamburger:hover { background: rgba(255, 255, 255, 0.08); }
.hamburger:focus-visible { outline: 2px solid var(--color-green-light); outline-offset: 2px; }
.hamburger-bars { display: inline-block; width: 22px; height: 16px; position: relative; }
.hamburger-bars span {
  position: absolute; left: 0; right: 0; height: 2px; background: var(--color-bg-section); border-radius: 2px;
  transition: transform 0.25s var(--ease-smooth), top 0.25s var(--ease-smooth), opacity 0.2s;
}
.hamburger-bars span:nth-child(1) { top: 0; }
.hamburger-bars span:nth-child(2) { top: 7px; }
.hamburger-bars span:nth-child(3) { top: 14px; }
.nav-wrap.is-open .hamburger-bars span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav-wrap.is-open .hamburger-bars span:nth-child(2) { opacity: 0; }
.nav-wrap.is-open .hamburger-bars span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    background: rgba(15, 26, 14, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    color: rgba(244, 239, 226, 0.9);
    max-height: none;
    overflow: visible;
  }
  .nav-wrap.is-open .nav-links { display: flex; }
  .nav-link {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
    color: rgba(244, 239, 226, 0.9);
  }
  .nav-link:hover { background: rgba(255, 255, 255, 0.06); color: #ffffff; }
  .nav-link.active { color: #ffffff; background: rgba(255, 255, 255, 0.06); }
  .nav-link.active::after { display: none; }
  .nav-item.has-dropdown { display: flex; flex-direction: column; }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    margin: 0 0 0 16px;
    padding: 4px 0 4px 8px;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease-smooth);
  }
  .nav-item.has-dropdown.is-open .dropdown { max-height: 400px; }
  .nav-item.has-dropdown.is-open .nav-caret { transform: rotate(180deg); }
  .dropdown a { color: rgba(244, 239, 226, 0.85); padding: 10px 12px; }
  .dropdown a:hover { background: rgba(255, 255, 255, 0.06); color: #ffffff; }
  .nav-mobile-cta {
    display: block;
    margin-top: 8px;
    padding: 12px 16px;
    background: var(--color-green-primary);
    color: #ffffff;
    border-radius: 9999px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
  }
  .nav-mobile-cta:hover { background: var(--color-green-light); color: #ffffff; }
}
@media (min-width: 901px) { .nav-mobile-cta { display: none; } }


/* ---------- Hero (landing) ---------- */
.hero {
  position: relative;
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 85% 10%, rgba(200, 184, 154, 0.18), transparent 60%),
    radial-gradient(55% 60% at 10% 90%, rgba(74, 124, 47, 0.32), transparent 65%),
    radial-gradient(40% 35% at 50% 50%, rgba(106, 170, 58, 0.12), transparent 70%);
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}
.hero-inner { padding-block: 80px; max-width: 880px; }
@media (min-width: 768px) { .hero-inner { padding-block: 120px; } }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero h1 {
  text-transform: uppercase;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 20px;
  color: var(--color-text-light);
}
.hero p.lead {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 760px;
}
.stat-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}
.stat-badge strong { display: block; font-size: 1.05rem; color: var(--color-text-light); margin-bottom: 2px; font-weight: 700; }

/* ---------- Page Hero (subpage banner) ---------- */
.page-hero {
  position: relative;
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding-top: 140px;
  padding-bottom: 64px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 90% 20%, rgba(200, 184, 154, 0.16), transparent 60%),
    radial-gradient(50% 60% at 10% 100%, rgba(74, 124, 47, 0.28), transparent 65%);
  z-index: -1;
}
@media (min-width: 768px) { .page-hero { padding-top: 168px; padding-bottom: 96px; } }
.breadcrumb { font-size: 0.8125rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; letter-spacing: 0.02em; }
.breadcrumb a { color: rgba(255,255,255,0.85); transition: color 0.2s var(--ease-smooth); }
.breadcrumb a:hover { color: var(--color-green-light); }
.breadcrumb .sep { margin-inline: 8px; color: rgba(255,255,255,0.4); }
.page-hero h1 { color: var(--color-text-light); margin-bottom: 16px; max-width: 800px; }
.page-hero p.lead { color: rgba(255,255,255,0.82); max-width: 700px; font-size: 1.125rem; margin-bottom: 28px; }

/* ---------- Trust Marquee ---------- */
.marquee {
  background: var(--color-text-dark);
  color: rgba(255, 255, 255, 0.92);
  padding-block: 14px;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee 32s linear infinite;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.marquee-track span { white-space: nowrap; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Section Heads ---------- */
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { max-width: 640px; margin-inline: auto; font-size: 1.0625rem; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-green-primary);
  margin-bottom: 12px;
}

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(74, 124, 47, 0.4); }
.service-card:focus-visible { outline: 2px solid var(--color-green-light); outline-offset: 3px; }
.service-card h3 { color: var(--color-text-dark); }
.service-card p { font-size: 0.95rem; line-height: 1.6; flex: 1; }
.service-card .card-link {
  font-weight: 600;
  color: var(--color-green-primary);
  font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s var(--ease-smooth);
}
.service-card:hover .card-link { gap: 10px; }

.icon-swatch {
  width: 64px; height: 64px;
  border-radius: 14px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 4px 12px rgba(74, 124, 47, 0.18);
}
.swatch-1 { background: linear-gradient(135deg, #6aaa3a 0%, #4a7c2f 100%); color: white; }
.swatch-2 { background: linear-gradient(135deg, #c8b89a 0%, #8a7d65 100%); color: white; }
.swatch-3 { background: linear-gradient(135deg, #4a7c2f 0%, #2f5a1d 100%); color: white; }
.swatch-4 { background: linear-gradient(135deg, #6aaa3a 0%, #c8b89a 100%); color: white; }
.swatch-5 { background: linear-gradient(135deg, #2f5a1d 0%, #6aaa3a 100%); color: white; }
.swatch-6 { background: linear-gradient(135deg, #8a7d65 0%, #4a7c2f 100%); color: white; }

/* ---------- About / Trust Points ---------- */
.about-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.05fr 1fr; gap: 64px; } }

.trust-points {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) { .trust-points { grid-template-columns: repeat(2, 1fr); } }
.trust-point {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}
.trust-point .tp-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(74,124,47,0.12), rgba(106,170,58,0.18));
  color: var(--color-green-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.trust-point h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--color-text-dark); letter-spacing: 0; }
.trust-point p { font-size: 0.875rem; line-height: 1.55; margin: 0; }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 600px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth);
}
.process-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.process-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-green-light), var(--color-green-primary));
  color: white;
  font-weight: 700;
  font-family: 'Anton', 'Arial Narrow', Impact, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(74,124,47,0.3);
}
.process-step h3 { font-size: 1.0625rem; margin-bottom: 6px; }
.process-step p { font-size: 0.9rem; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial .stars { color: #e8a51c; font-size: 1rem; letter-spacing: 2px; }
.testimonial .quote { color: var(--color-text-dark); font-size: 0.95rem; line-height: 1.65; flex: 1; }
.testimonial .attribution {
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
  font-size: 0.875rem;
}
.testimonial .attribution strong { color: var(--color-text-dark); display: block; font-weight: 700; }
.testimonial .attribution span { color: var(--color-text-mid); font-size: 0.8125rem; }

/* ---------- CTA Banner ---------- */
.cta-banner { text-align: center; }
.cta-banner h2 { color: var(--color-text-light); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.78); max-width: 600px; margin: 0 auto 32px; font-size: 1.0625rem; }
.cta-banner .btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Footer ---------- */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 36px; } }
@media (min-width: 1100px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr 1.2fr; gap: 44px; } }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .fb-logo { display: flex; align-items: center; gap: 10px; }
.footer-brand .fb-logo img { height: 44px; width: auto; }
.footer-brand .fb-logo strong { color: white; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.02em; }
.footer-brand .fb-tag {
  font-family: 'Anton', 'Arial Narrow', Impact, sans-serif;
  color: var(--color-tan);
  font-size: 1.05rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.65; color: rgba(255,255,255,0.65); }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color 0.2s var(--ease-smooth); }
.footer-col a:hover { color: var(--color-green-light); }
.footer-col a:focus-visible { outline: 2px solid var(--color-green-light); outline-offset: 2px; border-radius: 2px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-contact .ftc-line { display: flex; align-items: center; gap: 10px; }
.footer-contact .ftc-line svg { flex-shrink: 0; opacity: 0.7; }

.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  transition: background-color 0.2s var(--ease-smooth), transform 0.2s var(--ease-spring), border-color 0.2s var(--ease-smooth);
}
.social-row a:hover { background: var(--color-green-primary); border-color: var(--color-green-primary); transform: translateY(-2px); }
.social-row a:focus-visible { outline: 2px solid var(--color-green-light); outline-offset: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Service Page Specifics ---------- */
.intro-prose { max-width: 760px; margin-inline: auto; }
.intro-prose p { font-size: 1.0625rem; margin-bottom: 16px; line-height: 1.75; }
.intro-prose p:last-child { margin-bottom: 0; }

.included-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .included-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .included-grid { grid-template-columns: repeat(3, 1fr); } }
.included-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth);
}
.included-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.included-card .ic-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(106,170,58,0.18), rgba(74,124,47,0.22));
  color: var(--color-green-primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}
.included-card span.ic-text { font-weight: 600; color: var(--color-text-dark); font-size: 0.95rem; line-height: 1.4; }

.why-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.why-card .why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-green-light), var(--color-green-primary));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(74,124,47,0.25);
}
.why-card h3 { font-size: 1.125rem; margin-bottom: 8px; }
.why-card p { font-size: 0.95rem; }

.area-callout {
  text-align: center;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  max-width: 820px;
  margin-inline: auto;
  box-shadow: var(--shadow-sm);
}
.area-callout p { font-size: 1.125rem; color: var(--color-text-dark); font-weight: 500; line-height: 1.5; }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.4fr 1fr; gap: 48px; } }
.contact-form {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.875rem; font-weight: 600; color: var(--color-text-dark); }
.form-row label .req { color: #b22222; margin-left: 2px; }
.form-row input, .form-row select, .form-row textarea {
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-bg-white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s var(--ease-smooth), box-shadow 0.2s var(--ease-smooth);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--color-green-primary);
  box-shadow: 0 0 0 3px rgba(74,124,47,0.16);
}
.form-row input:focus-visible, .form-row select:focus-visible, .form-row textarea:focus-visible {
  outline: none;
}
.form-submit { align-self: flex-start; margin-top: 4px; }

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.side-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.side-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-green-primary);
  margin-bottom: 14px;
}
.side-card .sc-line { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--color-text-dark); margin-bottom: 8px; line-height: 1.5; }
.side-card .sc-line:last-child { margin-bottom: 0; }
.side-card .sc-line svg { flex-shrink: 0; color: var(--color-green-primary); margin-top: 2px; }
.side-card a { color: var(--color-text-dark); transition: color 0.2s; }
.side-card a:hover { color: var(--color-green-primary); }

/* ---------- Our Work / Portfolio ---------- */
.portfolio-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
.project-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: white;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth);
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-card::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -2;
}
.project-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,26,14,0) 30%, rgba(15,26,14,0.85) 100%);
  z-index: -1;
}
.project-1::before { background: radial-gradient(120% 80% at 30% 20%, #6aaa3a 0%, #4a7c2f 60%, #2f5a1d 100%); }
.project-2::before { background: radial-gradient(120% 80% at 70% 30%, #c8b89a 0%, #8a7d65 60%, #4a3f2e 100%); }
.project-3::before { background: radial-gradient(110% 80% at 40% 30%, #4a7c2f 0%, #2f5a1d 70%, #0f1a0e 100%); }
.project-4::before { background: radial-gradient(120% 80% at 60% 30%, #c8b89a 0%, #6aaa3a 60%, #2f5a1d 100%); }
.project-5::before { background: radial-gradient(120% 80% at 30% 70%, #6aaa3a 0%, #4a7c2f 50%, #1a3010 100%); }
.project-6::before { background: radial-gradient(120% 80% at 70% 70%, #8a7d65 0%, #4a7c2f 60%, #0f1a0e 100%); }
.project-card .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  width: max-content;
  backdrop-filter: blur(6px);
}
.project-card h3 { color: white; font-size: 1.375rem; margin-bottom: 6px; }
.project-card p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.5; margin: 0; }

/* ---------- Generic helpers ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* small utility for stacked vertical lists */
.stacked > * + * { margin-top: 12px; }

/* ---------- Jobber Work Request Embed (contact.html) ---------- */
.jobber-form-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.jobber-form-card-head {
  padding: 28px 28px 18px;
  border-bottom: 1px solid var(--color-border);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(74, 124, 47, 0.06), transparent 55%),
    var(--color-bg-white);
}
.jobber-form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-green-primary);
  margin-bottom: 12px;
}
.jobber-form-card-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 10px;
}
.jobber-form-card-head p {
  font-size: 0.9375rem;
  color: var(--color-text-mid);
  max-width: 56ch;
  line-height: 1.55;
}
.jobber-form-mount {
  position: relative;
  min-height: 720px;
  width: 100%;
}
.jobber-form-mount.jobber-inline-work-request {
  max-width: 100% !important;
  margin: 0 !important;
}
.jobber-form-mount iframe.jobber-work-request {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  min-height: 720px;
  padding: 0 !important;
  border-radius: 0 !important;
}
.jobber-noscript-btn {
  margin: 18px;
  align-self: stretch;
  justify-content: center;
}

/* ---------- Page hero photo backgrounds ---------- */
.page-hero--photo {
  background-color: #0f1a0e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero--photo::before {
  background:
    linear-gradient(180deg, rgba(15, 26, 14, 0.72) 0%, rgba(15, 26, 14, 0.55) 55%, rgba(15, 26, 14, 0.85) 100%),
    radial-gradient(60% 70% at 80% 10%, rgba(200, 184, 154, 0.18), transparent 60%);
}

/* Per-page hero photos */
.page-hero--landscaping  { background-image: url('brand_photos/IMG_3738.jpg'); }
.page-hero--lawn         { background-image: url('brand_photos/8.jpg'); }
.page-hero--leaves       { background-image: url('brand_photos/IMG_3526.jpg'); }
.page-hero--fertilization{ background-image: url('brand_photos/12.jpg'); }
.page-hero--lights       { background-image: url('brand_photos/9.jpg'); background-position: center 35%; }
.page-hero--about        { background-image: url('brand_photos/IMG_3406.jpg'); background-position: center 42%; background-size: cover; }
.page-hero--work         { background-image: url('brand_photos/IMG_3525.jpg'); background-position: center 60%; }
.page-hero--services     { background-image: url('brand_photos/IMG_3737.jpg'); background-position: center 60%; }

/* ---------- Photo gallery / inline photos ---------- */
.work-photo,
.service-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(15, 26, 14, 0.12);
  background-color: var(--color-bg-section);
}
.photo-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 900px) { .photo-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.photo-figure { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.photo-figure figcaption {
  font-size: 0.875rem;
  color: var(--color-text-mid);
  line-height: 1.5;
}
.photo-figure figcaption strong {
  display: block;
  color: var(--color-text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

/* Inline split: photo + copy */
.photo-split {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .photo-split { grid-template-columns: 1fr 1fr; gap: 56px; } }
.photo-split .work-photo { aspect-ratio: 5 / 4; }

/* Project card with real photo */
.project-card.has-photo::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.project-photo--1::before { background-image: url('brand_photos/IMG_3525.jpg'); }
.project-photo--2::before { background-image: url('brand_photos/IMG_3737.jpg'); }
.project-photo--3::before { background-image: url('brand_photos/IMG_3680.jpg'); }
.project-photo--4::before { background-image: url('brand_photos/6.jpg'); }
.project-photo--5::before { background-image: url('brand_photos/IMG_3738.jpg'); }
.project-photo--6::before { background-image: url('brand_photos/IMG_3526.jpg'); }
.project-photo--7::before { background-image: url('brand_photos/IMG_3736.jpg'); }
.project-photo--8::before { background-image: url('brand_photos/IMG_3683.jpg'); }

/* ---------- Location pages: also-serving chips ---------- */
.also-serving { text-align: center; }
.also-serving h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text-mid);
  margin-bottom: 14px;
}
.also-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.also-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-bg-white);
  color: var(--color-text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.2s var(--ease-smooth), border-color 0.2s var(--ease-smooth), transform 0.2s var(--ease-spring);
}
.also-chip:hover {
  border-color: var(--color-green-light);
  background: var(--color-bg-section);
  transform: translateY(-1px);
}
.also-chip:focus-visible { outline: 2px solid var(--color-green-light); outline-offset: 2px; }

/* ---------- Location pages: FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 880px; margin-inline: auto; }
.faq-item {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 4px 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s var(--ease-smooth);
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--color-green-primary);
  transition: transform 0.2s var(--ease-smooth);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 0 18px; }
.faq-item .faq-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-mid);
  margin: 0;
}

/* ---------- City hub: services grid with photo cards ---------- */
.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.service-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.service-card-link .service-card.has-photo {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s var(--ease-smooth), border-color 0.2s var(--ease-smooth);
}
.service-card-link:hover .service-card.has-photo {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-green-light);
}
.service-card-link .sc-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-section);
}
.service-card-link .sc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-spring);
}
.service-card-link:hover .sc-photo img { transform: scale(1.04); }
.service-card-link .sc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.service-card-link .sc-body h3 {
  font-family: 'Anton', 'Arial Narrow', Impact, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0;
  color: var(--color-text-dark);
  margin: 0;
}
.service-card-link .sc-body p { font-size: 0.92rem; line-height: 1.55; color: var(--color-text-mid); margin: 0; }
.service-card-link .sc-link {
  margin-top: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-green-primary);
}
.service-card-link:focus-visible { outline: 2px solid var(--color-green-light); outline-offset: 3px; border-radius: var(--radius-xl); }

/* ---------- Location hero overlay (uses inline background-image) ---------- */
.page-hero[style*="background-image"] {
  background-color: #0f1a0e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------- Service Area (about page) ---------- */
.service-area-section { background: var(--color-bg-dark); color: var(--color-text-light); }
.service-area-section h2 { color: var(--color-text-light); }
.service-area-section p { color: rgba(255,255,255,0.78); }
.service-area-section .section-eyebrow { color: var(--color-green-light); }
.service-area-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .service-area-grid { grid-template-columns: 1.05fr 1fr; gap: 72px; }
}
.service-area-map {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.service-area-map img {
  width: 100%;
  height: auto;
  max-width: 540px;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(106,170,58,0.18));
  transition: transform 0.4s var(--ease-smooth), filter 0.4s var(--ease-smooth);
}
.service-area-map img:hover {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 12px 28px rgba(106,170,58,0.32));
}
.service-area-copy .section-eyebrow { display: inline-block; margin-bottom: 14px; }
.service-area-copy h2 { margin-bottom: 16px; }
.service-area-copy > p { margin-bottom: 24px; max-width: 520px; }
.county-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 600px) { .county-list { grid-template-columns: 1fr 1fr; } }
.county-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  transition: border-color 0.2s var(--ease-smooth), background-color 0.2s var(--ease-smooth);
}
.county-list li:hover {
  background: rgba(106,170,58,0.10);
  border-color: rgba(106,170,58,0.45);
}
.county-name {
  font-family: 'Anton', 'Arial Narrow', Impact, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--color-green-light);
  line-height: 1;
}
.county-cities {
  color: rgba(255,255,255,0.72);
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}
.service-area-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  font-style: italic;
}

/* ---------- Before/After design preview slider ---------- */
.before-after-section { background: var(--color-bg-section); }
.before-after-wrap { max-width: 880px; margin: 0 auto; }
.before-after-head { text-align: center; margin-bottom: 36px; }
.before-after-head .section-eyebrow {
  color: var(--color-green-primary);
  display: inline-block;
  margin-bottom: 12px;
}
.before-after-head h2 { margin-bottom: 14px; }
.before-after-head p {
  color: var(--color-text-mid);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.before-after {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow:
    0 28px 56px rgba(15, 26, 14, 0.18),
    0 12px 28px rgba(74, 124, 47, 0.12);
  background: var(--color-bg-dark);
}
.ba-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  --ba-pos: 40%;
}
.ba-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.ba-stage .ba-top {
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 0;
  z-index: 3;
  outline: none;
}
.ba-handle::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 2px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.45);
}
.ba-handle-knob {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 10px 26px rgba(15, 26, 14, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-primary);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-smooth);
  z-index: 4;
}
.ba-stage:hover .ba-handle-knob {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 14px 32px rgba(74, 124, 47, 0.4);
}
.ba-handle:focus-visible .ba-handle-knob {
  box-shadow:
    0 0 0 3px var(--color-green-light),
    0 14px 32px rgba(74, 124, 47, 0.4);
}
.ba-handle-knob svg {
  width: 26px;
  height: 26px;
}

.ba-label {
  position: absolute;
  top: 16px;
  font-family: 'Anton', 'Arial Narrow', Impact, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 2;
  line-height: 1;
}
.ba-label-before {
  left: 16px;
  background: rgba(15, 26, 14, 0.7);
  color: rgba(244, 239, 226, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.ba-label-after {
  right: 16px;
  background: rgba(74, 124, 47, 0.88);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.before-after-disclaimer {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(74, 124, 47, 0.08);
  border: 1px solid rgba(74, 124, 47, 0.22);
  color: var(--color-text-mid);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
}
.before-after-disclaimer strong { color: var(--color-green-primary); }

.before-after-caption {
  text-align: center;
  margin-top: 14px;
  color: var(--color-text-mid);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .ba-handle-knob { width: 44px; height: 44px; }
  .ba-handle-knob svg { width: 22px; height: 22px; }
  .ba-label { font-size: 0.72rem; padding: 5px 11px; letter-spacing: 0.14em; }
}

/* ---------- Hand-drawn CTA squiggle (vanilla port of Kokonut UI hand-writing-text) ---------- */
.cta-mark {
  position: relative;
  display: inline-flex;
  isolation: isolate;
}
.cta-mark > .cta-mark-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132%;
  height: 240%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}
.cta-mark > .cta-mark-svg path {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
  opacity: 0;
}
.cta-mark.is-drawn > .cta-mark-svg path {
  animation:
    cta-draw 2.5s cubic-bezier(0.43, 0.13, 0.23, 0.96) forwards,
    cta-fade 0.5s ease-out forwards;
}
@keyframes cta-draw { to { stroke-dashoffset: 0; } }
@keyframes cta-fade { to { opacity: 0.95; } }
.cta-mark > * { position: relative; z-index: 1; }
.cta-mark--cream > .cta-mark-svg path { stroke: #F4EFE2; }
.cta-mark--green > .cta-mark-svg path { stroke: #4A8E45; }
.cta-mark--ink   > .cta-mark-svg path { stroke: #0E1714; }
@media (prefers-reduced-motion: reduce) {
  .cta-mark.is-drawn > .cta-mark-svg path {
    animation: none;
    stroke-dashoffset: 0;
    opacity: 0.9;
  }
}

/* ============ Spotlight glow on photo/card hover (Kokonut UI port, brand-tuned) ============ */
:root {
  --glow-x: 0;
  --glow-y: 0;
  --glow-xp: 0.5;
}
.glow-card,
.photo-figure,
.figure-card,
.service-card-link,
.sc-photo {
  position: relative;
  isolation: isolate;
  --glow-base: 100;       /* hue: green */
  --glow-spread: 25;      /* tight range — stays in green family */
  --glow-radius: 16;
  --glow-border: 2;
  --glow-size: 220;
  --glow-saturation: 55%;
  --glow-lightness: 52%;
  --glow-hue: calc(var(--glow-base) + (var(--glow-xp, 0.5) * var(--glow-spread, 0)));
}
.glow-card::before,
.photo-figure::before,
.figure-card::before,
.service-card-link::before,
.sc-photo::before,
.glow-card::after,
.photo-figure::after,
.figure-card::after,
.service-card-link::after,
.sc-photo::after {
  content: '';
  position: absolute;
  inset: calc(var(--glow-border) * -1px);
  border: calc(var(--glow-border) * 1px) solid transparent;
  border-radius: calc(var(--glow-radius) * 1px + var(--glow-border) * 1px);
  background-attachment: fixed;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-mask: linear-gradient(transparent, transparent), linear-gradient(#fff, #fff);
  -webkit-mask-clip: padding-box, border-box;
  -webkit-mask-composite: source-in;
  mask: linear-gradient(transparent, transparent), linear-gradient(#fff, #fff);
  mask-clip: padding-box, border-box;
  mask-composite: intersect;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.glow-card::before,
.photo-figure::before,
.figure-card::before,
.service-card-link::before,
.sc-photo::before {
  background-image: radial-gradient(
    calc(var(--glow-size) * 0.75 * 1px) calc(var(--glow-size) * 0.75 * 1px) at
    calc(var(--glow-x) * 1px) calc(var(--glow-y) * 1px),
    hsl(var(--glow-hue) var(--glow-saturation) var(--glow-lightness)),
    transparent 100%
  );
  filter: brightness(1.4) saturate(1.2);
}
.glow-card::after,
.photo-figure::after,
.figure-card::after,
.service-card-link::after,
.sc-photo::after {
  background-image: radial-gradient(
    calc(var(--glow-size) * 0.5 * 1px) calc(var(--glow-size) * 0.5 * 1px) at
    calc(var(--glow-x) * 1px) calc(var(--glow-y) * 1px),
    rgba(255, 255, 255, 0.85),
    transparent 100%
  );
}
.glow-card:hover::before,
.glow-card:hover::after,
.photo-figure:hover::before,
.photo-figure:hover::after,
.figure-card:hover::before,
.figure-card:hover::after,
.service-card-link:hover::before,
.service-card-link:hover::after,
.sc-photo:hover::before,
.sc-photo:hover::after {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
.glow-card::before,
.photo-figure::before,
.figure-card::before,
.service-card-link::before,
.sc-photo::before,
.glow-card::after,
.photo-figure::after,
.figure-card::after,
.service-card-link::after,
.sc-photo::after {
    transition: none;
  }
}

/* Box-shadow glow ring for elements that already use ::before/::after for content
   (project-card has photo on ::before; work-photo is an <img>) */
.project-card,
.work-photo {
  transition: transform 0.3s var(--ease-smooth, ease), box-shadow 0.35s var(--ease-smooth, ease);
}
.project-card:hover,
.work-photo:hover {
  box-shadow:
    0 0 0 2px hsl(95, 55%, 52%),
    0 18px 48px rgba(106, 170, 58, 0.28),
    0 8px 24px rgba(15, 26, 14, 0.18);
}
/* ============ end spotlight glow ============ */
