:root {
  --green-950: #06310a;
  --green-900: #1a3a1c;
  --green-800: #2d5e30;
  --green-700: #3d7a42;
  --green-600: #4e9654;
  --green-400: #7dbd83;
  --green-100: #d6edd8;
  --green-50: #eef7ef;
  --cream: #faf8f3;
  --cream-dark: #f0ece1;
  --text-dark: #1a1a18;
  --text-mid: #4a4a46;
  --text-light: #7a7a74;
  --white: #ffffff;
  --accent: #c8a84b;
  --accent-light: #f5e8c0;
  --radius: 4px;
  --radius-lg: 8px;
}

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

picture { display: block; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 96px;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ─── TOPBAR ─── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: var(--green-950); border-bottom: 1px solid var(--green-800);
  display: flex; align-items: center; justify-content: center;
  height: 32px; padding: 0 1rem; gap: 0.6rem;
  font-size: 0.75rem;
}
.topbar a, .topbar a[href^="tel"] { color: var(--white); text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--green-100); }
.topbar a strong { font-weight: 700; color: var(--green-400); }
.topbar-sep, .topbar-sep-email { color: var(--green-400); }

/* ─── NAV ─── */
nav {
  position: fixed; top: 32px; left: 0; right: 0; z-index: 1000;
  background: var(--green-950);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 64px;
  border-bottom: 1px solid var(--green-800);
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  color: var(--white); font-size: 1.25rem; text-decoration: none; letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo span { color: var(--green-400); }
.nav-logo-icon { height: 34px; width: auto; display: block; }
.nav-logo-sub {
  font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-100);
  margin-left: 0.5rem;
}
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  color: var(--green-100); text-decoration: none; font-size: 0.85rem; font-weight: 400;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 0 1rem; height: 64px;
  display: flex; align-items: center; border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); border-bottom-color: var(--green-400); }
.nav-cta {
  background: var(--green-600); color: var(--white) !important;
  border-radius: var(--radius); padding: 0 1.25rem !important;
  border-bottom: none !important; font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-700) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.mobile-menu { display: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s; }

/* ─── HERO ─── */
.hero {
  background: var(--green-950);
  min-height: calc(100vh - 64px);
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  padding: 5rem 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 60px,
    rgba(77,150,84,0.04) 60px, rgba(77,150,84,0.04) 61px
  );
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(77,150,84,0.15); border: 1px solid var(--green-800);
  color: var(--green-400); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.85rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--green-400); border-radius: 50%; }
h1 {
  font-family: 'DM Serif Display', serif;
  color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1; margin-bottom: 1.5rem; font-weight: 400;
}
h1 em { color: var(--green-400); font-style: italic; }
.hero-sub {
  color: var(--green-100); font-size: 1.05rem; font-weight: 300;
  max-width: 480px; margin-bottom: 2rem; line-height: 1.7;
}
.hero-trust {
  display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--green-400); font-size: 0.8rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.trust-item::before { content: '✓'; font-weight: 700; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--green-600); color: var(--white);
  padding: 0.9rem 2rem; border: none; border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.04em; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--green-700); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 0.9rem 2rem; border: 1px solid var(--green-600);
  border-radius: var(--radius); font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 500; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(77,150,84,0.1); }

.hero-photo {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-stack {
  position: relative; width: 100%; max-width: 520px;
}
.hero-img-main {
  position: relative; width: 100%; padding-bottom: 75%;
  background: var(--green-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--green-700);
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}
.hero-img-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-img-overlay {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--green-950); border: 1px solid var(--green-700);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  min-width: 180px;
}
.overlay-num { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--green-400); line-height: 1; }
.overlay-label { font-size: 0.75rem; color: var(--green-100); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* ─── SECTION COMMONS ─── */
section { padding: 5rem 4rem; }
.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--green-700);
  margin-bottom: 0.75rem;
}
h2 {
  font-family: 'DM Serif Display', serif; font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400; line-height: 1.15; margin-bottom: 1rem; color: var(--text-dark);
}
h2 em { color: var(--green-700); font-style: italic; }
.section-intro { color: var(--text-mid); max-width: 560px; font-size: 1.05rem; line-height: 1.7; }

/* ─── SERVICES STRIP ─── */
.services-strip {
  background: var(--green-950); padding: 2.5rem 4rem;
  display: flex; align-items: center; gap: 3rem; overflow-x: auto;
  border-top: 1px solid var(--green-800); border-bottom: 1px solid var(--green-800);
}
.strip-label { color: var(--green-400); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; white-space: nowrap; }
.strip-divider { width: 1px; height: 24px; background: var(--green-800); flex-shrink: 0; }
.strip-items { display: flex; gap: 2rem; flex-wrap: nowrap; }
.strip-item {
  color: var(--green-100); font-size: 0.8rem; white-space: nowrap;
  display: flex; align-items: center; gap: 0.5rem; font-weight: 400;
  letter-spacing: 0.04em;
}
.strip-item::before { content: '—'; color: var(--green-600); }

/* ─── SERVICES GRID ─── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: var(--cream-dark); }
.service-card {
  background: var(--cream); padding: 2.5rem 2rem;
  transition: background 0.2s;
  cursor: default;
}
.service-card:hover { background: var(--white); }
.service-icon {
  width: 40px; height: 40px; background: var(--green-100); color: var(--green-700);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 20px; height: 20px; }
.service-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--text-dark); }
.service-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img {
  aspect-ratio: 3/4; background: var(--green-100);
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: var(--green-950); color: var(--white);
  padding: 0.75rem 1rem; border-radius: var(--radius);
  font-size: 0.8rem; text-align: center;
}
.about-img-badge strong { display: block; font-size: 1.5rem; font-family: 'DM Serif Display', serif; color: var(--green-400); }
.about-content { padding: 1rem 0; }
.about-content p { color: var(--text-mid); margin-bottom: 1.25rem; line-height: 1.75; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.stat-box {
  border: 1px solid var(--cream-dark); border-radius: var(--radius);
  padding: 1.25rem; background: var(--white);
}
.stat-num { font-family: 'DM Serif Display', serif; font-size: 1.75rem; color: var(--green-800); }
.stat-lbl { font-size: 0.8rem; color: var(--text-light); margin-top: 0.25rem; }

/* ─── REVIEWS ─── */
.reviews-bg { background: var(--green-950); }
.reviews-bg h2, .reviews-bg .section-label { color: var(--white); }
.reviews-bg .section-intro { color: var(--green-100); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.review-card {
  background: var(--green-900); border: 1px solid var(--green-800);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.stars { color: var(--accent); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
.review-text { color: var(--green-100); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.reviewer { color: var(--green-400); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── QUOTE FORM ─── */
.quote-wrap { max-width: 680px; margin: 0 auto; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 1rem; text-align: center; }

/* ─── GALLERY ─── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 3rem; }
.gallery-item {
  aspect-ratio: 1; background: var(--green-100); overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,31,15,0.85));
  color: var(--white); font-size: 0.8rem; padding: 1.5rem 1rem 0.75rem;
  opacity: 0; transition: opacity 0.3s; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500;
}
.gallery-item:hover .gallery-item-label { opacity: 1; }
.gallery-placeholder {
  width: 100%; height: 100%; background: var(--green-100);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
}
.gallery-placeholder .icon { opacity: 0.35; color: var(--green-700); }
.gallery-placeholder .icon svg { width: 34px; height: 34px; }
.gallery-placeholder span { font-size: 0.75rem; color: var(--green-700); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }

/* ─── BEFORE / AFTER SLIDER ─── */
.before-after-strip { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--cream-dark); }
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.ba-pair { display: flex; flex-direction: column; gap: 0.75rem; }
.ba-caption { text-align: center; font-size: 0.85rem; color: var(--text-mid); font-weight: 500; }

.ba-slider {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--radius-lg); background: var(--green-100);
  cursor: ew-resize; touch-action: pan-y; user-select: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.13);
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-before-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.ba-before-wrap img { position: absolute; top: 0; left: 0; height: 100%; max-width: none; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
  background: var(--white); transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(0,0,0,0.35); pointer-events: none;
}
.ba-handle::after {
  content: '↔'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 38px; height: 38px;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--green-800); box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.ba-label {
  position: absolute; top: 10px; z-index: 2;
  background: rgba(13,31,15,0.85); color: var(--white);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 3px; pointer-events: none;
}
.ba-label-before { left: 10px; }
.ba-label-after { right: 10px; background: var(--green-700); }

/* ─── TEAM ─── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.team-card {
  border: 1px solid var(--cream-dark); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--white);
}
.team-card-img { aspect-ratio: 4/3; background: var(--green-100); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: var(--green-900); font-family: 'DM Serif Display', serif;
  font-size: 4rem; color: var(--green-400);
}
.team-card-body { padding: 1.5rem; }
.team-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.25rem; }
.team-role { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-700); font-weight: 500; margin-bottom: 0.75rem; }
.team-bio { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }
.team-contact { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--cream-dark); }
.team-contact a { color: var(--green-700); text-decoration: none; font-size: 0.85rem; font-weight: 500; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--green-800); text-align: center; padding: 5rem 4rem;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: var(--green-100); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner .btn-primary { background: var(--white); color: var(--green-900); font-size: 1rem; padding: 1rem 2.5rem; }
.cta-banner .btn-primary:hover { background: var(--cream); }

/* ─── FOOTER ─── */
footer {
  background: var(--green-950); color: var(--green-100);
  padding: 4rem; border-top: 1px solid var(--green-800);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--green-400); font-size: 0.85rem; line-height: 1.7; margin-top: 0.75rem; max-width: 280px; }
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.25rem; color: var(--white); display: flex; align-items: center; gap: 0.6rem; }
.footer-logo span { color: var(--green-400); }
.footer-logo-icon { height: 40px; width: auto; display: block; }
.footer-col h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green-600); font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--green-100); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--green-800); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: var(--green-600); }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  section { padding: 3rem 1.5rem; }
  .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem 4rem; min-height: auto; gap: 3rem; }
  .hero-photo { order: -1; }
  .hero-img-stack { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .nav-logo { font-size: 1.05rem; }
  .nav-logo-icon { height: 28px; }
  .nav-logo-sub { font-size: 0.6rem; margin-left: 0.35rem; }
  .hamburger { display: flex; }
  .mobile-menu {
    display: none; position: fixed; top: 96px; left: 0; right: 0; bottom: 0;
    background: var(--green-950); z-index: 999; padding: 2rem;
    flex-direction: column; gap: 0; overflow-y: auto;
  }
  .topbar { gap: 0.25rem; padding: 0 0.35rem; font-size: 0.52rem; white-space: nowrap; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: var(--white); text-decoration: none; padding: 1rem 0;
    border-bottom: 1px solid var(--green-800); font-size: 1.1rem; font-weight: 500;
    display: block;
  }
  .mobile-menu a.nav-cta-mobile {
    margin-top: 1.5rem; background: var(--green-600);
    text-align: center; border-radius: var(--radius); border: none; padding: 1rem;
  }
  .services-strip { padding: 1.5rem; }
  .cta-banner { padding: 3rem 1.5rem; }
  footer { padding: 2.5rem 1.5rem; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { width: 100%; justify-content: center; }
}

/* ─── MOWER SCENE ─── */
.mower-scene {
  position: relative; background: var(--green-950);
  overflow: hidden; height: 120px;
  border-top: 1px solid var(--green-800);
}
.grass-base {
  position: absolute; bottom: 0; left: 0; right: 0; height: 48px;
  background: var(--green-800);
}
.grass-uncut {
  position: absolute; bottom: 48px; left: 0; right: 0;
  display: flex; align-items: flex-end; height: 28px; overflow: hidden;
}
.blade {
  width: 7px; flex-shrink: 0; border-radius: 4px 4px 0 0;
  transform-origin: bottom center;
  animation: sway 2s ease-in-out infinite;
  transition: height 0.35s ease, opacity 0.35s ease;
}
.blade:nth-child(3n+1) { height: 22px; background: var(--green-700); animation-delay: 0s; }
.blade:nth-child(3n+2) { height: 16px; background: var(--green-600); animation-delay: 0.4s; }
.blade:nth-child(3n)   { height: 26px; background: var(--green-700); animation-delay: 0.8s; }
.blade.cut {
  height: 5px !important; opacity: 0.85; animation: none !important;
  transform: rotate(0deg);
}
@keyframes sway {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}
.mower {
  position: absolute; bottom: 42px; left: -170px;
  z-index: 10;
}
.grass-puff-group { opacity: 0; transition: opacity 0.15s ease; }
.mower.driving .grass-puff-group { opacity: 1; }
.mower-scene-label {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  color: var(--green-600); font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.15em; font-weight: 600; white-space: nowrap;
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ─── MARQUEE ─── */
.marquee-track {
  display: flex; gap: 2rem; flex-shrink: 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-wrap { display: flex; gap: 2rem; overflow: hidden; flex: 1; mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ─── HERO ENTRANCE ─── */
.hero-badge { animation: slideDown 0.6s ease 0.1s both; }
.hero h1 { animation: slideDown 0.6s ease 0.2s both; }
.hero-sub { animation: slideDown 0.6s ease 0.35s both; }
.hero-trust { animation: slideDown 0.6s ease 0.5s both; }
.hero-btns { animation: slideDown 0.6s ease 0.6s both; }
.hero-photo { animation: slideLeft 0.8s ease 0.3s both; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ─── SEO COPY ─── */
.seo-section { padding: 4rem; background: var(--white); }
.seo-section h2 { margin-bottom: 1rem; }
.seo-section p { color: var(--text-mid); line-height: 1.8; max-width: 780px; font-size: 0.95rem; }
.seo-section p + p { margin-top: 1rem; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.5rem; margin-top: 1.5rem; }
.area-pill {
  background: var(--cream); border: 1px solid var(--cream-dark);
  border-radius: 100px; padding: 0.35rem 0.9rem; font-size: 0.8rem;
  color: var(--text-mid); text-align: center;
}

/* ─── PHONE LINK ─── */
a[href^="tel"] { color: var(--green-700); text-decoration: none; font-weight: 600; }
a[href^="tel"]:hover { text-decoration: underline; }
