/* ============================================================
   Root Variables
   ============================================================ */
:root {
  --bg: #f7f5f0;
  --dark: #212c31;
  --dark-mid: #2d3e44;
  --green: #4e7242;
  --green-light: #6a9960;
  --text: #2a3235;
  --text-muted: #6b7c82;
  --light: #e8e5df;
  --border: #d5d2cc;
  --gold: #c9a227;
  --white: #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --nav-h: 72px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 24px rgba(33,44,49,0.10);
  --shadow-lg: 0 12px 48px rgba(33,44,49,0.16);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, video { display: block; max-width: 100%; }

/* ============================================================
   Utilities
   ============================================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-label--light { color: var(--green-light); }

.section-header {
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark);
}

/* ============================================================
   Button
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.nav.is-top {
  background: transparent;
}

.nav.is-scrolled {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.chevron {
  transition: transform var(--transition);
}
.has-dropdown:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  overflow: hidden;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu li a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(33, 44, 49, 0.88) 0%,
    rgba(33, 44, 49, 0.70) 35%,
    rgba(33, 44, 49, 0.35) 65%,
    rgba(33, 44, 49, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 10%;
  padding-top: var(--nav-h);
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 460px;
}

/* ============================================================
   Why Choose
   ============================================================ */
.why-section {
  padding: 100px 0;
  background: var(--bg);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.reason-card {
  position: relative;
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.reason-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--light);
  line-height: 1;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.reason-card:hover .reason-num { color: rgba(78,114,66,0.12); }

.reason-heading {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.reason-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   Services Grid
   ============================================================ */
.services-section {
  padding: 100px 0;
  background: var(--dark);
}

.services-section .section-title { color: var(--white); }
.services-section .section-label { color: var(--green-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.service-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img { transform: scale(1.05); }

.service-img--mowing   { background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('services/mowing.jpg') center/cover no-repeat; }
.service-img--mulching { background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('services/mulching.jpg') center/cover no-repeat; }
.service-img--snow     { background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('services/snow.jpg') center/cover no-repeat; }
.service-img--hedge    { background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('services/hedges.jpg') center/cover no-repeat; }
.service-img--planting { background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('services/planting.jpg') center/cover no-repeat; }
.service-img--leaf     { background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('services/leaves.jpg') center/cover no-repeat; }

.service-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 24px 24px;
  background: linear-gradient(to top, rgba(33,44,49,0.95) 0%, transparent 100%);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  transition: padding var(--transition);
}
.service-card:hover .service-card-label { padding-bottom: 32px; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews-section {
  padding: 100px 0;
  background: var(--bg);
}

/* Aggregate ratings */
.rating-aggregate {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  padding: 32px 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.platform-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
}

.platform-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 70px;
}

.platform-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
  display: block;
}

.review-platform-logo {
  height: 14px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

.stars-display {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--border);
  letter-spacing: 2px;
}
.stars-display::before {
  content: '★★★★★';
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  overflow: hidden;
  white-space: nowrap;
  width: calc(attr(data-rating) / 5 * 100%);
}

.platform-score {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
}

.platform-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Carousel */
.carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-outer {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
  flex: 0 0 100%;
  padding: 40px 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.review-meta { flex: 1; }

.review-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.3;
}

.review-time {
  font-size: 13px;
  color: var(--text-muted);
}

.review-stars {
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.review-platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.carousel-btn:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.is-active {
  background: var(--green);
  transform: scale(1.25);
}

/* ============================================================
   Contact
   ============================================================ */
.contact-section {
  background: var(--dark);
  padding: 100px 0;
}

.contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: background var(--transition);
}
.contact-item:hover { background: rgba(255,255,255,0.07); }

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(78,114,66,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-light);
}

.contact-item-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #181f22;
  padding-top: 64px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  max-width: 200px;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  gap: 64px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.footer-nav-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-nav-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   Service Page (shared)
   ============================================================ */
.service-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.service-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
}

.service-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 20px;
}

.service-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.service-hero-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.service-content {
  flex: 1;
  padding: 100px 0;
  background: var(--bg);
}

.coming-soon {
  text-align: center;
  padding: 80px 32px;
}
.coming-soon h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}
.coming-soon p {
  color: var(--text-muted);
  max-width: 380px;
  margin: 0 auto;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .reasons-grid { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .rating-aggregate { flex-direction: column; gap: 24px; text-align: center; }
  .platform-divider { width: 80px; height: 1px; }
  .platform-rating { justify-content: center; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-nav { flex-direction: column; gap: 32px; }
  .hero-content { padding: 0 6%; padding-top: var(--nav-h); }
  .nav-links { gap: 0; }
  .nav-link { padding: 8px 10px; font-size: 13px; }
  .review-card { padding: 28px 24px; }
  .rating-aggregate { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .nav-links { display: none; }
  .reasons-grid { gap: 16px; }
  .reason-card { padding: 28px 20px; }
}

/* ============================================================
   Stars display JS enhancement target
   ============================================================ */
.star-filled { color: var(--gold); }
.star-empty  { color: var(--border); }
.star-half   { color: var(--gold); opacity: 0.5; }
