:root {
  --green-dark: #2d5a27;
  --green-mid: #3a7d32;
  --green-light: #4a9e3f;
  --green-bright: #5cbf4a;
  --green-pale: #e8f5e4;
  --charcoal: #1a1a1a;
  --dark-gray: #2c2c2c;
  --mid-gray: #555;
  --light-gray: #f4f4f2;
  --white: #ffffff;
  --gold: #d4a843;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--green-bright);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* UPDATED LOGO: no circle, full image, fade edges into dark background */
.nav-logo-img-wrap {
  position: relative;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  flex-shrink: 0;
}

.nav-logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Fade edges into nav background */
.nav-logo-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(26,26,26,0.9) 100%);
  pointer-events: none;
}

.nav-logo span {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-logo .accent { color: var(--green-bright); }

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

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(92, 191, 74, 0.15); }

.nav-cta {
  background: var(--green-bright) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
}

.nav-cta:hover { background: var(--green-light) !important; transform: translateY(-1px); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/d224cfde5a3eddf12c916b3cb6bc71fe_1.jpeg') center/cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(45,90,39,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text { animation: fadeSlideUp 0.8s ease-out; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(92, 191, 74, 0.15);
  border: 1px solid rgba(92, 191, 74, 0.3);
  color: var(--green-bright);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.hero-badge svg { width: 16px; height: 16px; }

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--green-bright);
  display: block;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green-bright);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(92, 191, 74, 0.3);
}

.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 6px 25px rgba(92, 191, 74, 0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover { border-color: var(--green-bright); color: var(--green-bright); }

.hero-image {
  position: relative;
  animation: fadeSlideUp 0.8s ease-out 0.2s both;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-bright);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========== PAGE HERO (non-home pages) ========== */
.page-hero {
  background: var(--charcoal);
  padding: 140px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(45,90,39,0.4) 100%);
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero .section-tag { color: var(--green-bright); }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--mid-gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--charcoal) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(92, 191, 74, 0.08);
}

/* ========== SERVICES ========== */
.services { background: var(--light-gray); }

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

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-pale);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-pale), rgba(92,191,74,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--green-mid);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.service-card p {
  color: var(--mid-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== BEFORE/AFTER ========== */
.before-after-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.ba-slider {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
  user-select: none;
  aspect-ratio: 3/4;
}

.ba-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after {
  clip-path: inset(0 0 0 50%);
  z-index: 2;
}

.ba-before { z-index: 1; }

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--white);
  z-index: 10;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-handle svg { width: 24px; height: 24px; color: var(--green-mid); }

.ba-label {
  position: absolute;
  bottom: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 5;
  pointer-events: none;
}

.ba-label-before {
  left: 16px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
}

.ba-label-after {
  right: 16px;
  background: rgba(92, 191, 74, 0.9);
  color: var(--white);
}

.ba-text h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.ba-text p {
  color: var(--mid-gray);
  margin-bottom: 16px;
  line-height: 1.7;
}

.ba-features {
  list-style: none;
  margin-top: 24px;
}

.ba-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--charcoal);
  font-weight: 500;
}

.ba-features li svg {
  width: 20px;
  height: 20px;
  color: var(--green-bright);
  flex-shrink: 0;
}

/* ========== WORK GALLERY ========== */
.gallery-preview { background: var(--charcoal); }

.gallery-preview .section-tag { color: var(--green-bright); }
.gallery-preview .section-title { color: var(--white); }
.gallery-preview .section-subtitle { color: rgba(255,255,255,0.6); }

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

.gallery-grid-home {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,90,39,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

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

.gallery-item-overlay span {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gallery-full .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* ========== REVIEWS ========== */
.reviews { background: var(--light-gray); }

.reviews-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.reviews-stars {
  display: flex;
  gap: 4px;
}

.reviews-stars svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  fill: var(--gold);
}

.reviews-score {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
}

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

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-top: 3px solid var(--green-bright);
}

.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  fill: var(--gold);
}

.review-text {
  color: var(--mid-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--green-mid);
  font-size: 1rem;
}

.review-name {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.review-source {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-mid);
  font-weight: 600;
  font-size: 0.95rem;
}

.reviews-badge svg { width: 20px; height: 20px; }

/* ========== SCHEDULING / CTA ========== */
.scheduling {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--charcoal) 100%);
  position: relative;
  overflow: hidden;
}

.scheduling::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(92, 191, 74, 0.08);
}

.scheduling .section-tag { color: var(--green-bright); }
.scheduling .section-title { color: var(--white); }
.scheduling .section-subtitle { color: rgba(255,255,255,0.7); }

.scheduling-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.scheduling-info h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.scheduling-info p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.scheduling-perks {
  list-style: none;
}

.scheduling-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.scheduling-perks li svg {
  width: 20px;
  height: 20px;
  color: var(--green-bright);
  flex-shrink: 0;
}

.calendly-placeholder {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.calendly-header {
  background: var(--green-bright);
  padding: 24px 32px;
  text-align: center;
}

.calendly-header h4 {
  color: var(--white);
  font-size: 1.2rem;
}

.calendly-header p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-top: 4px;
  text-transform: none;
  font-family: 'Source Sans 3', sans-serif;
}

.calendly-body {
  padding: 32px;
}

.calendly-times {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.calendly-time-slot {
  border: 2px solid var(--green-pale);
  border-radius: 8px;
  padding: 14px 20px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: var(--green-mid);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calendly-time-slot:hover {
  background: var(--green-pale);
  border-color: var(--green-bright);
}

.calendly-time-slot.active {
  background: var(--green-bright);
  border-color: var(--green-bright);
  color: var(--white);
}

.calendly-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--mid-gray);
  font-style: italic;
}

/* ========== SERVICE AREAS ========== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.area-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--light-gray);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.area-card:hover {
  background: var(--green-pale);
  transform: translateY(-3px);
}

.area-card svg {
  width: 28px;
  height: 28px;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.area-card h4 {
  font-size: 1rem;
  color: var(--charcoal);
}

.area-card p {
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin-top: 4px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--charcoal);
  padding: 60px 24px 30px;
  border-top: 3px solid var(--green-bright);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

/* Footer logo: same treatment, slightly larger */
.footer-logo-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--charcoal);
  margin-bottom: 16px;
}

.footer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.footer-logo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(26,26,26,0.85) 100%);
  pointer-events: none;
}

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

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--green-bright); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--green-bright);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: var(--green-bright); }

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}

.footer-social a:hover { background: var(--green-bright); color: var(--white); }

.footer-social a svg { width: 18px; height: 18px; }

/* ========== GALLERY MODAL ========== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.modal-overlay.active { display: flex; }

.modal-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover { background: rgba(255,255,255,0.25); }

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-nav:hover { background: rgba(255,255,255,0.25); }
.modal-prev { left: 20px; }
.modal-next { right: 20px; }

/* ========== ANIMATIONS ========== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-image { display: none; }
  .hero-stats { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after-container { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-full .gallery-item:first-child { grid-column: span 1; grid-row: span 1; aspect-ratio: 1; }
  .scheduling-content { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--charcoal);
    padding: 20px;
    border-bottom: 3px solid var(--green-bright);
  }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-home { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
  .areas-grid { grid-template-columns: 1fr; }
}
