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

:root {
  --forest: #1a2e1a;
  --forest-mid: #243524;
  --sage: #4a6741;
  --sage-light: #6b8c5e;
  --cream: #f5f0e8;
  --cream-dark: #e8dfd3;
  --warm-white: #faf8f4;
  --accent: #f5f0e8;
  --accent-hover: #ffffff;
  --charcoal: #2a2a2a;
  --text-light: rgba(245, 240, 232, 0.7);
  --text-dark: rgba(26, 46, 26, 0.6);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─── */
h1, h2, h3 { font-family: 'Outfit', sans-serif; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); line-height: 1.08; font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); line-height: 1.12; font-weight: 700; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.6rem); line-height: 1.3; font-weight: 600; letter-spacing: -0.01em; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--sage-light);
}

/* ─── Layout ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

section { padding: clamp(4rem, 8vw, 8rem) 0; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--forest);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245, 240, 232, 0.25); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245, 240, 232, 0.3);
}
.btn-outline:hover { border-color: var(--cream); background: rgba(245, 240, 232, 0.08); }

.btn-dark {
  background: var(--forest);
  color: var(--cream);
}
.btn-dark:hover { background: var(--forest-mid); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26, 46, 26, 0.3); }

.btn-arrow::after {
  content: '→';
  transition: transform 0.3s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ─── Navigation ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(26, 46, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--cream); }

.nav-cta {
  padding: 0.7rem 1.6rem !important;
  font-size: 0.85rem !important;
  background: var(--sage-light) !important;
  color: #fff !important;
  font-weight: 600;
}
.nav-cta:hover {
  background: var(--sage) !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: 0.3s;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 100vh;
  max-height: 900px;
  display: flex;
  align-items: center;
  background: var(--forest);
  overflow: hidden;
  padding-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(74, 103, 65, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(245, 240, 232, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-content h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--accent);
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
}

.hero-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.4rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-stack {
  position: relative;
  height: 560px;
}

.hero-img {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-1 {
  width: 340px;
  height: 440px;
  top: 0;
  right: 40px;
  animation: float1 6s ease-in-out infinite;
}

.hero-img-2 {
  width: 240px;
  height: 300px;
  bottom: 0;
  left: 0;
  animation: float2 7s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: var(--cream);
  color: var(--forest);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: float3 5s ease-in-out infinite;
}

.hero-badge strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
}

@keyframes float1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@keyframes float3 { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-8px) rotate(1deg); } }

/* ─── Marquee ─── */
.marquee-section {
  background: var(--forest-mid);
  padding: 1.5rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 2.5rem;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(245, 240, 232, 0.5);
}

.marquee-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── About ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 240, 232, 0.2);
  border-radius: var(--radius);
  pointer-events: none;
}

.about-content h2 { margin-bottom: 1.5rem; color: var(--forest); }

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
}

.about-feature .icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.about-feature .icon svg { width: 12px; height: 12px; fill: none; stroke: white; stroke-width: 2.5; stroke-linecap: round; }

/* ─── Stats ─── */
.stats-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(74, 103, 65, 0.2) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.06);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(245, 240, 232, 0.07);
  transform: translateY(-4px);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ─── Services ─── */
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.services-header h2 { color: var(--forest); margin-bottom: 1rem; }
.services-header p { color: var(--text-dark); font-size: 1.05rem; line-height: 1.7; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(26, 46, 26, 0.06);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26, 46, 26, 0.1);
}

.service-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img { transform: scale(1.08); }

.service-card-body { padding: 1.8rem; }

.service-card-body h3 { color: var(--forest); margin-bottom: 0.75rem; font-size: 1.3rem; }
.service-card-body p { color: var(--text-dark); font-size: 0.9rem; line-height: 1.7; }

.service-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(74, 103, 65, 0.08);
  color: var(--sage);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

/* ─── Process ─── */
.process-section {
  background: var(--cream);
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.process-header h2 { color: var(--forest); margin-bottom: 1rem; }
.process-header p { color: var(--text-dark); font-size: 1.05rem; line-height: 1.7; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--sage-light), var(--accent));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(26, 46, 26, 0.15);
}

.process-step h3 { color: var(--forest); margin-bottom: 0.75rem; font-size: 1.2rem; }
.process-step p { color: var(--text-dark); font-size: 0.9rem; line-height: 1.6; }

/* ─── Gallery ─── */
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.gallery-header h2 { color: var(--forest); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1.2rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 46, 26, 0.6), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item-label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }

.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

/* ─── Testimonials ─── */
.testimonials-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(245, 240, 232, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(107, 140, 94, 0.1) 0%, transparent 50%);
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}

.testimonials-header h2 { color: var(--cream); margin-bottom: 1rem; }
.testimonials-header p { color: var(--text-light); font-size: 1.05rem; line-height: 1.7; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(245, 240, 232, 0.08);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-style: normal;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
}

.testimonial-name {
  font-weight: 600;
  color: var(--cream);
  font-size: 0.9rem;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-light);
}

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.google-badge-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.2rem 2rem;
}

.google-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--cream);
}

.google-logo svg {
  width: 28px;
  height: 28px;
}

.google-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.google-rating-score {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.google-rating-stars {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: 1px;
}

.google-rating-count {
  font-size: 0.8rem;
  color: var(--text-light);
}

.google-review-source {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

.google-review-source svg {
  width: 14px;
  height: 14px;
}

/* ─── CTA ─── */
.cta-section {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.cta-card {
  background: var(--forest);
  border-radius: calc(var(--radius) * 1.5);
  padding: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 240, 232, 0.08), transparent 70%);
  right: -100px;
  top: -100px;
}

.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-content p { color: var(--text-light); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }

.cta-form { position: relative; z-index: 1; }

.cta-form .form-group { margin-bottom: 1rem; }

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder { color: rgba(245, 240, 232, 0.35); }

.cta-form input:focus,
.cta-form textarea:focus { border-color: var(--accent); }

.cta-form textarea { resize: vertical; min-height: 100px; }

.cta-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cta-form .btn { width: 100%; justify-content: center; padding: 1.1rem; }

.cta-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cta-phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-phone-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2; }

.cta-phone-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.cta-phone-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ─── Footer ─── */
footer {
  background: var(--charcoal);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo { font-size: 1.4rem; display: inline-block; margin-bottom: 1rem; }

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col ul a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 1.5rem; }
  .hero-buttons { justify-content: center; margin-bottom: 1.5rem; }
  .hero-stats { justify-content: center; gap: 2rem; padding-top: 1.5rem; }
  .hero-stat-number { font-size: 1.8rem; }
  .hero-visual { display: none; }
  .hero {
    min-height: auto;
    padding: 80px 0 2.5rem;
    background: var(--forest) url('images/landscaping-crew.png') center/cover no-repeat;
  }
  .hero::before {
    background: rgba(26, 46, 26, 0.75);
  }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { max-height: 360px; border-radius: var(--radius-sm); width: 100%; }
  .about-image img { width: 100%; height: 100%; object-fit: cover; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { aspect-ratio: 16/10; }
  .cta-form .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
