/* ═══════════════════════════════════════════════════
   Rish's Complete Lawn Care — 2026 Redesign
   ═══════════════════════════════════════════════════ */

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

:root {
  /* Brand */
  --green-900: #0a1f08;
  --green-800: #122d10;
  --green-700: #1a4216;
  --green-600: #22571c;
  --green: #2a6b22;
  --green-400: #3d9432;
  --green-300: #5cb950;
  --green-200: #8dd683;
  --green-100: #c2eabc;
  --green-50: #edf8eb;

  --gold: #d4a028;
  --gold-light: #f0c95c;
  --gold-dark: #b8891e;
  --gold-50: #fdf6e3;

  /* Neutrals */
  --white: #ffffff;
  --gray-25: #fcfcfc;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --black: #030712;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.25);
  --shadow-green: 0 10px 30px -5px rgba(42,107,34,.3);
  --shadow-gold: 0 10px 30px -5px rgba(212,160,40,.3);

  /* Radii */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --duration: .3s;
  --duration-fast: .15s;
  --duration-slow: .5s;
}

/* ── Reset ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100% }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block }
a { color: var(--green); text-decoration: none; transition: color var(--duration) var(--ease) }
a:hover { color: var(--green-400) }
ul { list-style: none }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--gray-900) }
h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 800 }
h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.6rem,3.5vw,2.6rem); font-weight: 700 }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600 }
p { margin-bottom: 1rem; color: var(--gray-600); line-height: 1.8 }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; font-size: .875rem; font-weight: 600;
  border-radius: var(--radius-full); border: 2px solid transparent;
  cursor: pointer; transition: all var(--duration) var(--ease);
  text-transform: uppercase; letter-spacing: .06em; font-family: inherit;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0; transition: opacity var(--duration) var(--ease);
}
.btn:hover::after { opacity: 1 }

.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-400));
  color: #fff; border-color: transparent;
}
.btn-green:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-green); color: #fff;
  background: linear-gradient(135deg, var(--green-700), var(--green));
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--gray-900); border-color: transparent;
}
.btn-gold:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-gold); color: var(--gray-900);
}

.btn-outline {
  background: transparent; color: var(--green); border-color: var(--green);
  padding: 10px 24px; font-size: .82rem;
}
.btn-outline:hover {
  background: var(--green); color: #fff; transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-white {
  background: #fff; color: var(--green); border-color: #fff;
}
.btn-white:hover {
  background: var(--green-50); transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: rgba(255,255,255,.08); color: #fff;
  border-color: rgba(255,255,255,.3); backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: #fff; color: var(--green); border-color: #fff;
}

.btn-lg { padding: 18px 40px; font-size: .95rem }
.btn-block { width: 100% }

/* ═══════════════════════════
   HEADER + DROPDOWN NAV
   ═══════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: all var(--duration) var(--ease);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; padding: 0 24px;
}
.logo { display: flex; align-items: center; gap: 12px }
.logo img { height: 46px; width: auto; transition: transform var(--duration) var(--ease) }
.logo:hover img { transform: scale(1.03) }
.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gray-800);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.logo-text span { display: block; font-size: .72rem; color: var(--green); font-weight: 600; letter-spacing: .05em; text-transform: uppercase }

/* Main nav */
.main-nav { display: flex; align-items: center; gap: 4px }
.main-nav > a, .nav-item > a {
  color: var(--gray-700); font-weight: 500; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 8px 16px; border-radius: var(--radius);
  transition: all var(--duration) var(--ease); position: relative;
}
.main-nav > a:hover, .nav-item > a:hover, .nav-item:hover > a {
  color: var(--green); background: var(--green-50);
}
.nav-cta {
  background: linear-gradient(135deg, var(--green), var(--green-400)) !important;
  color: #fff !important; padding: 10px 24px !important;
  border-radius: var(--radius-full) !important;
  box-shadow: 0 2px 12px rgba(42,107,34,.25);
  font-size: .82rem !important;
}
.nav-cta:hover {
  box-shadow: var(--shadow-green) !important;
  transform: translateY(-1px); background: linear-gradient(135deg, var(--green-700), var(--green)) !important;
}

/* Dropdown container */
.nav-item { position: relative }
.nav-item > a::after {
  content: ''; display: inline-block; width: 5px; height: 5px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-left: 6px; margin-bottom: 2px;
  transition: transform var(--duration) var(--ease);
}
.nav-item:hover > a::after { transform: rotate(-135deg) }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: -12px; min-width: 260px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); border: 1px solid var(--gray-100);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .25s var(--ease); padding: 8px; z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0) }
.dropdown a {
  display: block; padding: 10px 16px; font-size: .85rem; font-weight: 500;
  color: var(--gray-700); transition: all var(--duration) var(--ease);
  border-radius: var(--radius-sm);
}
.dropdown a:hover { background: var(--green-50); color: var(--green) }

/* Mobile toggle */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 1001;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: var(--gray-800);
  border-radius: 2px; transition: all var(--duration) var(--ease);
}

/* ═══════════════════
   HERO
   ═══════════════════ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 25%, var(--green-700) 50%, var(--green-600) 75%, var(--green) 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url('/assets/images/rish-complete-lawn-care-home-warrington-landscaping-1.png') center/cover no-repeat;
  opacity: .1; mix-blend-mode: luminosity;
}
.hero-glow {
  position: absolute; top: -30%; right: -15%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(93,185,80,.2), transparent 60%);
  border-radius: 50%; pointer-events: none; animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1) }
  50% { transform: translate(-20px, 20px) scale(1.05) }
}
.hero-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 440px; gap: 60px; align-items: center;
}
.hero-brand {
  color: var(--gold-light); font-size: .9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em; margin-bottom: .75rem;
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-brand::before, .hero-brand::after {
  content: ''; display: inline-block; width: 24px; height: 2px;
  background: var(--gold-light);
}
.hero-text h1 {
  color: #fff; font-size: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: 1rem; line-height: 1.08;
  text-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.hero-sub {
  color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: .5rem; line-height: 1.7;
}
.hero-tag {
  color: var(--gold-light); font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; font-size: .85rem; margin-bottom: 2.5rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-tag::before {
  content: ''; display: inline-block; width: 28px; height: 2px;
  background: var(--gold-light);
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px }
.hero-btns .btn-gold { box-shadow: 0 4px 20px rgba(212,160,40,.35) }

/* Hero form */
.hero-form {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 36px 30px; position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.1);
}
.hero-form::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold-light), var(--green));
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0 }
  100% { background-position: -200% 0 }
}
.hero-form h2 {
  text-align: center; color: var(--gray-900); font-size: 1.35rem;
  margin-bottom: .4rem; font-family: 'Playfair Display', Georgia, serif;
}
.form-badge {
  text-align: center; margin-bottom: 12px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--green);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-badge::before, .form-badge::after {
  content: ''; width: 16px; height: 1.5px; background: var(--green);
}
.hero-form > p, .hero-form .form-subtitle {
  text-align: center; font-size: .88rem; color: var(--gray-500); margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 14px }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); font-size: .9rem; font-family: inherit;
  transition: all var(--duration) var(--ease); background: var(--gray-50);
  color: var(--gray-800);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(42,107,34,.08); background: #fff;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--gray-400);
}

/* ═══════════════════
   SECTION TITLES
   ═══════════════════ */
.section-label {
  text-align: center; text-transform: uppercase; font-size: .78rem; font-weight: 700;
  letter-spacing: .15em; color: var(--green); margin-bottom: .5rem;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.section-label::before, .section-label::after {
  content: ''; width: 20px; height: 1.5px; background: var(--gold);
}
.section-title {
  text-align: center; margin-bottom: .8rem; color: var(--gray-900);
}
.section-title::after {
  content: ''; display: block; width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 18px auto 0; border-radius: var(--radius-full);
}
.section-desc {
  text-align: center; max-width: 640px; margin: 0 auto 3rem;
  font-size: 1.05rem; color: var(--gray-500); line-height: 1.8;
}

/* ═══════════════════
   WHY CHOOSE US
   ═══════════════════ */
.why-section { padding: 100px 0; background: var(--gray-50) }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px }
.feature {
  text-align: center; padding: 40px 28px; background: var(--white);
  border-radius: var(--radius-xl); transition: all var(--duration) var(--ease);
  border: 1px solid var(--gray-100); position: relative;
}
.feature:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
  border-color: var(--green-100);
}
.feature-icon {
  width: 72px; height: 72px; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--green-400));
  border-radius: 20px; box-shadow: var(--shadow-green);
  transition: transform var(--duration) var(--ease-spring);
}
.feature:hover .feature-icon { transform: scale(1.08) rotate(-3deg) }
.feature-icon img { width: 36px; height: 36px; filter: brightness(0) invert(1) }
.feature h3 { margin-bottom: 10px; color: var(--gray-900); font-weight: 700 }
.feature p { font-size: .9rem; margin-bottom: 0; color: var(--gray-500) }

/* ═══════════════════
   SERVICES GRID
   ═══════════════════ */
.services-section { padding: 100px 0 }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px }
.svc-card {
  background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
  transition: all var(--duration) var(--ease); border: 1px solid var(--gray-100);
  position: relative;
}
.svc-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.svc-img { height: 220px; overflow: hidden; position: relative }
.svc-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.3), transparent 50%);
  opacity: 0; transition: opacity var(--duration) var(--ease);
}
.svc-card:hover .svc-img::after { opacity: 1 }
.svc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.svc-card:hover .svc-img img { transform: scale(1.08) }
.svc-body { padding: 26px }
.svc-body h3 { margin-bottom: 10px; color: var(--gray-900) }
.svc-body p { font-size: .9rem; margin-bottom: 18px; min-height: 60px; color: var(--gray-500) }

/* ═══════════════════
   AREAS
   ═══════════════════ */
.areas-section { padding: 100px 0; background: var(--gray-50) }
.areas-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin: 48px 0 28px;
}
.area-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 1; transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-sm);
}
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg) }
.area-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.area-card:hover img { transform: scale(1.1) }
.area-card span {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 10px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: #fff; font-weight: 600; font-size: .82rem; text-align: center;
  letter-spacing: .03em;
}
.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px }
.pills a {
  padding: 10px 22px; background: var(--white); border-radius: var(--radius-full);
  font-size: .85rem; font-weight: 500; transition: all var(--duration) var(--ease);
  border: 1px solid var(--gray-200); color: var(--gray-600);
}
.pills a:hover {
  background: var(--green); color: #fff; border-color: var(--green);
  transform: translateY(-2px); box-shadow: var(--shadow-green);
}

/* ═══════════════════
   GALLERY / OUR WORK
   ═══════════════════ */
.work-section { padding: 100px 0 }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 48px 0 36px }
.gallery-item {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  position: relative; transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-sm);
}
.gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px) }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.08) }

/* ═══════════════════
   TESTIMONIALS
   ═══════════════════ */
.reviews-section { padding: 100px 0; background: var(--gray-50) }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px 0 36px }
.review-card {
  background: var(--white); padding: 36px 28px; border-radius: var(--radius-xl);
  transition: all var(--duration) var(--ease); border: 1px solid var(--gray-100);
  position: relative;
}
.review-card::before {
  content: '\201C'; position: absolute; top: 14px; right: 24px;
  font-size: 5rem; font-family: 'Playfair Display', Georgia, serif;
  color: var(--green-50); line-height: 1;
}
.review-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: var(--green-100);
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 3px }
.review-card p {
  font-style: italic; font-size: .92rem; line-height: 1.8;
  margin-bottom: 16px; position: relative; z-index: 1; color: var(--gray-600);
}
.review-author { font-weight: 700; font-size: .85rem; color: var(--green); letter-spacing: .03em }

/* ═══════════════════
   CTA BANNER
   ═══════════════════ */
.cta {
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--green-900), var(--green-800) 30%, var(--green-700) 60%, var(--green) 100%);
}
.cta::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,160,40,.1), transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.cta::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(93,185,80,.12), transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.cta h2 { color: #fff; margin-bottom: 1rem; font-size: clamp(1.6rem, 3.5vw, 2.4rem); position: relative; z-index: 1 }
.cta-brand {
  color: var(--gold-light); font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em; margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.cta p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 540px; margin: 0 auto 2.5rem; position: relative; z-index: 1 }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1 }

/* ═══════════════════
   FOOTER
   ═══════════════════ */
.site-footer { background: var(--gray-900); color: #fff; padding: 72px 0 32px }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px }
.footer-col img { margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .9 }
.footer-col p { color: rgba(255,255,255,.45); font-size: .88rem; line-height: 1.8 }
.footer-col h4 {
  color: #fff; margin-bottom: 18px; font-size: .82rem; text-transform: uppercase;
  letter-spacing: .1em; padding-bottom: 12px; position: relative; font-weight: 700;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-full);
}
.footer-col li { margin-bottom: 8px }
.footer-col a {
  color: rgba(255,255,255,.45); font-size: .88rem;
  transition: all var(--duration) var(--ease);
}
.footer-col a:hover { color: #fff; padding-left: 4px }
.social-links { display: flex; gap: 10px; margin-top: 18px }
.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: rgba(255,255,255,.06);
  border-radius: var(--radius); color: rgba(255,255,255,.5);
  transition: all var(--duration) var(--ease); border: 1px solid rgba(255,255,255,.06);
}
.social-links a:hover {
  background: var(--green); border-color: var(--green); color: #fff;
  transform: translateY(-2px); box-shadow: var(--shadow-green); padding-left: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .8rem; margin: 0 }
.footer-bottom a { color: rgba(255,255,255,.3) }
.footer-bottom a:hover { color: #fff; padding-left: 0 }

/* ═══════════════════
   PAGE HERO (interior)
   ═══════════════════ */
.page-hero {
  padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--green-900), var(--green-800) 30%, var(--green-700) 60%, var(--green) 100%);
}
.page-hero::before {
  content: ''; position: absolute; top: -40%; right: -15%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(93,185,80,.2), transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}
.page-hero h1 { color: #fff; position: relative; z-index: 1; margin-bottom: .8rem }
.page-hero p {
  color: rgba(255,255,255,.75); font-size: 1.1rem;
  max-width: 640px; margin: 0 auto; position: relative; z-index: 1; line-height: 1.8;
}
.page-hero .kicker {
  color: var(--gold-light); font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: .6rem;
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
}

/* ═══════════════════
   INTERIOR CONTENT
   ═══════════════════ */
.page-content { padding: 80px 0 100px }
.page-content .container { max-width: 860px }
.page-content h2 { color: var(--gray-900); margin: 2.5rem 0 1rem }
.page-content h3 { color: var(--gray-900); margin: 1.5rem 0 .7rem }
.page-content p { line-height: 1.85; font-size: 1rem }
.page-content ul { margin: 1rem 0 1.5rem 1.2rem; list-style: disc }
.page-content li { margin-bottom: .6rem; color: var(--gray-600); line-height: 1.75 }
.page-content li a { font-weight: 500 }

/* Grid layouts for interior */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 2rem 0 }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 2rem 0 }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin: 2rem 0 }

.card {
  background: var(--white); border-radius: var(--radius-xl); padding: 28px 26px;
  transition: all var(--duration) var(--ease); border: 1px solid var(--gray-100);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-100) }
.card h2 { font-size: 1.1rem; color: var(--gray-900); margin-bottom: 8px; font-family: 'Inter', sans-serif; font-weight: 700 }
.card h2 a { color: inherit }
.card h2 a:hover { color: var(--green) }
.card p { font-size: .9rem; margin-bottom: 0; color: var(--gray-500) }

.kicker {
  text-transform: uppercase; font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; color: var(--green);
}

/* FAQ section */
.faq { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--gray-100) }
.faq h2 { margin-bottom: 1.5rem }
.faq h3 { font-size: 1.05rem; color: var(--gray-900); margin-bottom: .5rem; margin-top: 1.5rem }
.faq p { margin-bottom: .8rem }

/* Area list cards */
.area-links {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px; margin: 2rem 0;
}
.area-links a {
  display: block; padding: 14px 18px; background: var(--white);
  border-radius: var(--radius); font-weight: 500; font-size: .9rem;
  transition: all var(--duration) var(--ease);
  border-left: 3px solid var(--green); box-shadow: var(--shadow-xs);
}
.area-links a:hover {
  transform: translateX(4px); box-shadow: var(--shadow-md);
  background: var(--green); color: #fff;
}

/* Blog post grid */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px; margin: 2rem 0;
}
.blog-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 28px 24px;
  transition: all var(--duration) var(--ease); border: 1px solid var(--gray-100);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-100) }
.blog-card h3 { margin-bottom: 8px }
.blog-card h3 a { color: var(--gray-900) }
.blog-card h3 a:hover { color: var(--green) }
.blog-card p { font-size: .9rem; margin-bottom: 12px; color: var(--gray-500) }

/* Curbing Gallery */
.curbing-gallery { margin: 2rem 0 3rem }
.curbing-gallery-main {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); margin-bottom: 16px;
  aspect-ratio: 16/10;
}
.curbing-gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
}
.curbing-gallery-thumbs {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
}
.curbing-gallery-thumbs img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius); cursor: pointer;
  transition: all var(--duration) var(--ease);
  border: 2px solid transparent; opacity: .7;
}
.curbing-gallery-thumbs img:hover,
.curbing-gallery-thumbs img.active {
  border-color: var(--green); opacity: 1;
  transform: scale(1.02);
}

/* Contact form page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin: 2rem 0 }
.contact-info h3 { color: var(--gray-900); margin-bottom: .8rem }
.contact-info p { font-size: 1rem }
.contact-info a { font-weight: 600 }

/* Utilities */
.text-center { text-align: center }
.mt-2 { margin-top: 2rem }
.mt-3 { margin-top: 3rem }

/* ═══════════════════
   SCROLL ANIMATIONS
   ═══════════════════ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0) }

/* ═══════════════════
   RESPONSIVE
   ═══════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center }
  .hero-btns { justify-content: center }
  .hero-tag { justify-content: center }
  .hero-form { max-width: 480px; margin: 40px auto 0 }
  .features { grid-template-columns: 1fr; max-width: 420px; margin: 48px auto 0 }
  .services-grid { grid-template-columns: repeat(2, 1fr) }
  .areas-grid { grid-template-columns: repeat(3, 1fr) }
  .reviews-grid { grid-template-columns: repeat(2, 1fr) }
  .footer-grid { grid-template-columns: repeat(2, 1fr) }
  .grid-3 { grid-template-columns: 1fr }
  .two-col { grid-template-columns: 1fr }
  .contact-grid { grid-template-columns: 1fr }
}

@media (max-width: 768px) {
  .mobile-toggle { display: flex }
  .logo-text { display: none }
  .main-nav {
    position: fixed; top: 80px; left: 0; right: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 12px 16px; gap: 0;
    box-shadow: var(--shadow-xl); display: none;
    border-top: 2px solid var(--green);
    max-height: calc(100vh - 80px); overflow-y: auto;
  }
  .main-nav.open { display: flex }
  .main-nav > a, .nav-item > a {
    width: 100%; text-align: center; padding: 16px;
    border-bottom: 1px solid var(--gray-100); border-radius: 0;
  }
  .nav-item { margin: 16px 0; padding-bottom: 4px; border-bottom: 1px solid var(--gray-100) }
  .nav-item > a { border-bottom: none }
  .nav-item > a::after {
    display: inline-block; content: ''; width: 6px; height: 6px;
    border: solid var(--green); border-width: 0 2px 2px 0;
    transform: rotate(45deg); margin-left: 8px; vertical-align: middle;
    transition: transform .2s ease;
  }
  .nav-item.open > a::after { transform: rotate(-135deg) }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border-radius: 0; padding: 0;
    background: var(--green-50); display: none; border: none;
  }
  .nav-item.open .dropdown { display: block }
  .dropdown a { text-align: center; padding: 10px 16px; font-size: .85rem; border-bottom: 1px solid rgba(0,0,0,.05) }
  .dropdown a:last-child { border-bottom: none }
  .dropdown a.view-all { font-weight: 600; color: var(--green); padding: 12px 16px }
  .nav-cta {
    margin-top: 8px; border-bottom: none !important;
    border-radius: var(--radius-full) !important; width: auto;
  }

  .hero { min-height: auto; padding: 110px 0 60px }
  .hero::after { height: 60px }
  .services-grid { grid-template-columns: 1fr }
  .areas-grid { grid-template-columns: repeat(2, 1fr) }
  .gallery { grid-template-columns: repeat(2, 1fr) }
  .reviews-grid { grid-template-columns: 1fr }
  .footer-grid { grid-template-columns: 1fr; text-align: center }
  .footer-col h4::after { left: 50%; transform: translateX(-50%) }
  .footer-bottom { flex-direction: column; text-align: center }
  .social-links { justify-content: center }
  .grid-2 { grid-template-columns: 1fr }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr }
  .gallery { grid-template-columns: 1fr }
  .cta-btns { flex-direction: column; align-items: center }
  .hero-btns { flex-direction: column; align-items: center }
  .hero-text h1 { font-size: 2rem }
}
