/* =========================================
   LANDMARK PROPERTY SERVICES — MAIN STYLES
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
  --green:       #5EB045;
  --green-dark:  #3D7A27;
  --green-hero:  #1E4D10;
  --navy:        #1B3A6B;
  --navy-dark:   #0D1E3A;
  --white:       #FFFFFF;
  --off-white:   #F6FAF4;
  --light-gray:  #E6EDE2;
  --border:      #D0DAC8;
  --text:        #1A2318;
  --text-mid:    #4A5568;
  --text-light:  #718096;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow:      0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.16);
  --radius:      10px;
  --radius-lg:   16px;
  --transition:  all 0.28s ease;
  --font-display: 'Oswald', sans-serif;
  --font-body:   'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-white {
  background: var(--white);
  color: var(--green-dark);
  font-weight: 600;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 10px;
  font-weight: 600;
  background: rgba(94,176,69,0.1);
  border: 1px solid rgba(94,176,69,0.25);
  padding: 4px 12px;
  border-radius: 100px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ---- HEADER / NAV ---- */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border-bottom: 3px solid var(--green);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 20px;
}
.nav-logo img { height: 100px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 5px;
  transition: var(--transition);
  font-weight: 500;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green-dark); background: var(--off-white); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-phone:hover { color: var(--green); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 0 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 20px;
  transition: var(--transition);
  font-weight: 500;
}
.mobile-menu a:hover { color: var(--green-dark); background: var(--off-white); }
.mobile-menu .mob-phone {
  color: var(--green-dark);
  font-weight: 700;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 16px;
}

/* ---- HERO ---- */
.hero {
  background:
    linear-gradient(to right, rgba(13,30,58,0.82) 0%, rgba(13,30,58,0.55) 60%, rgba(13,30,58,0.35) 100%),
    url('../images/hero-bg.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom right, transparent 49%, var(--white) 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--green); font-weight: 700; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 40px;
  background: rgba(0,0,0,0.45);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  width: fit-content;
}
.stat-item {
  padding: 14px 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.hero-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.hero-card p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 20px; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 28px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.trust-badge {
  width: 36px;
  height: 36px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
}
.trust-badge svg {
  width: 17px;
  height: 17px;
  stroke: var(--green-dark);
  fill: none;
}
.trust-badge svg[data-filled] {
  fill: var(--green-dark);
  stroke: none;
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---- REVIEW TICKER ---- */
.review-ticker {
  background: var(--navy-dark);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.review-ticker::before,
.review-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.review-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--navy-dark), transparent);
}
.review-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--navy-dark), transparent);
}
.review-ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
}
.review-ticker:hover .review-ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-card {
  min-width: 340px;
  max-width: 340px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.ticker-stars {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.ticker-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 8px;
  font-style: italic;
}
.ticker-card span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
}

/* ---- HOME ESTIMATE SECTION ---- */
.estimate-home { background: var(--off-white); }
.estimate-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.estimate-home-text { padding-top: 8px; }
.estimate-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.est-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

/* ---- SERVICES GRID ---- */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-top-color: var(--green-dark);
}
.service-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.service-img svg { width: 44px; height: 44px; opacity: 0.9; }
.service-img.mowing   { background: linear-gradient(135deg, #1a4a1c, #2D6A2F); }
.service-img.trimming { background: linear-gradient(135deg, #0D2E4A, #1B3A6B); }
.service-img.cleanup  { background: linear-gradient(135deg, #3a5a1a, #5EB045); }
.service-img.aeration { background: linear-gradient(135deg, #1B3A6B, #2D6A2F); }
.service-img.rock     { background: linear-gradient(135deg, #4a4a2a, #6B6B3A); }
.service-img.landscape{ background: linear-gradient(135deg, #2D6A2F, #5EB045); }
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 20px 22px 24px; }
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.service-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.service-price {
  display: inline-block;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 600;
}

/* ---- OUR WORK / BEFORE-AFTER ---- */
.work-section { background: var(--white); }
.work-intro {
  max-width: 580px;
  margin: 0 auto 52px;
  text-align: center;
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  background: var(--navy-dark);
}
.work-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.work-card:hover img { transform: scale(1.03); }
.work-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px 18px;
  background: linear-gradient(to top, rgba(13,30,58,0.88) 0%, transparent 100%);
}
.work-caption-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
}
.work-caption h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.work-ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.work-ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  background: var(--navy-dark);
}
.work-ba-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.work-ba-card:hover img { transform: scale(1.03); }
.work-ba-label {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  line-height: 1;
}
.work-ba-label.before {
  background: rgba(13,30,58,0.85);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
}
.work-ba-label.after {
  background: var(--green);
  color: var(--white);
}
.work-ba-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px 18px;
  background: linear-gradient(to top, rgba(13,30,58,0.88) 0%, transparent 100%);
}
.work-ba-caption h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}

/* ---- WHY US ---- */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid var(--border);
  background: var(--off-white);
}
.why-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
  background: var(--white);
}
.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--green-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.why-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* ---- GUARANTEE SECTION ---- */
.guarantee-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-hero) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.guarantee-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.guarantee-item {
  background: rgba(255,255,255,0.05);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}
.guarantee-item:hover { background: rgba(255,255,255,0.1); }
.guarantee-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.guarantee-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.guarantee-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}
.guarantee-header .section-label {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.guarantee-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.guarantee-header p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ---- TEAM SLIDESHOW (homepage) ---- */
.team-slideshow-section { line-height: 0; }
.team-slideshow {
  position: relative;
  overflow: hidden;
  height: 480px;
  background: var(--navy-dark);
}
.team-slideshow .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.team-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.team-slideshow .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,18,40,0.72) 0%, rgba(5,18,40,0.2) 55%, transparent 100%);
}
.team-slideshow .slide-caption {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  z-index: 2;
  width: 90%;
  max-width: 600px;
}
.team-slideshow .slide-caption h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.4);
  margin-bottom: 16px;
}
.team-slideshow .slide-caption p {
  font-size: 0.95rem;
  opacity: 0.8;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  letter-spacing: 0.06em;
}
.team-slideshow .slide-caption .slide-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 24px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  text-transform: uppercase;
  text-shadow: none;
  transition: var(--transition);
}
.team-slideshow .slide-caption .slide-cta:hover { background: var(--green-dark); transform: translateY(-2px); }
.team-slideshow .slide:nth-child(1) { animation: slide-crossfade 12s ease-in-out infinite; }
.team-slideshow .slide:nth-child(2) { animation: slide-crossfade 12s ease-in-out infinite -6s; }
@keyframes slide-crossfade {
  0%   { opacity: 1; }
  40%  { opacity: 1; }
  50%  { opacity: 0; }
  90%  { opacity: 0; }
  100% { opacity: 1; }
}
@media (max-width: 768px) {
  .team-slideshow { height: 320px; }
  .team-slideshow .slide-caption h3 { font-size: 1.4rem; }
  .team-slideshow .slide-caption { bottom: 28px; }
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--off-white); }
.testimonials-section .section-title { color: var(--navy); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: var(--transition);
  border-top: 3px solid var(--green);
}
.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars span { color: #F59E0B; font-size: 1rem; }
.review-text {
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.reviewer-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.reviewer-loc { font-size: 0.78rem; color: var(--text-light); margin-top: 1px; }

/* ---- SERVICE AREAS ---- */
.areas-section { background: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.area-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  font-weight: 500;
  transition: var(--transition);
}
.area-chip:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.area-chip svg { width: 13px; height: 13px; color: var(--green); flex-shrink: 0; }
.area-chip:hover svg { color: var(--white); }
.areas-cta {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  text-align: center;
}
.areas-cta h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.areas-cta p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }

/* ---- ESTIMATE SECTION ---- */
.estimate-section { background: var(--off-white); }
.jobber-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.jobber-wrap iframe { width: 100%; min-height: 560px; border: none; display: block; }

/* ---- CTA BANNER ---- */
.area-banner {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  padding: 48px 0;
}
.area-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.area-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}
.area-text p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-top: 4px; }

/* ---- FAQ ---- */
.faq-section { background: var(--white); }
.faq-grid { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--green); box-shadow: var(--shadow-sm); background: var(--white); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-align: left;
  transition: var(--transition);
}
.faq-q:hover { color: var(--green-dark); }
.faq-arrow { width: 18px; height: 18px; flex-shrink: 0; color: var(--green-dark); transition: transform 0.28s ease; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.28s ease; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }
.faq-a p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--green-hero) 0%, var(--green-dark) 60%, var(--green) 100%);
  padding: 64px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-top: 10px; position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ---- TEAM PAGE ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 780px;
  margin: 0 auto;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-photo {
  height: 300px;
  background: linear-gradient(135deg, var(--navy), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.team-info { padding: 24px 28px 28px; }
.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.team-bio { font-size: 0.93rem; color: var(--text-mid); line-height: 1.7; }

/* ---- STORY VISUAL ---- */
.story-visual { display: flex; align-items: stretch; }
.story-stat-card {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(94,176,69,0.2);
  box-shadow: var(--shadow-lg);
}
.story-stat { display: flex; flex-direction: column; padding: 18px 0; }
.story-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  letter-spacing: 0.02em;
}
.story-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 4px; letter-spacing: 0.04em; }
.story-divider { height: 1px; background: rgba(255,255,255,0.08); }
.story-quote { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 10px; }
.story-quote p { font-size: 0.97rem; color: rgba(255,255,255,0.82); line-height: 1.7; font-style: italic; }
.story-attr { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--green); text-transform: uppercase; font-weight: 500; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.contact-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--green-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-icon svg { flex-shrink: 0; }
.contact-item-text h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
  font-weight: 500;
}
.contact-item-text a,
.contact-item-text p { font-size: 0.98rem; color: var(--text); font-weight: 600; transition: var(--transition); }
.contact-item-text a:hover { color: var(--green-dark); }
.service-areas { background: var(--off-white); border-radius: var(--radius); padding: 22px 24px; margin-top: 28px; border: 1px solid var(--border); }
.service-areas h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 500;
}

/* ---- FOOTER ---- */
footer { background: var(--navy-dark); padding: 56px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img { height: 84px; margin-bottom: 16px; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer-phone { color: var(--green); font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; letter-spacing: 0.04em; display: block; margin-bottom: 6px; }
.footer-email { color: rgba(255,255,255,0.45); font-size: 0.85rem; transition: var(--transition); }
.footer-email:hover { color: var(--green); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { color: rgba(255,255,255,0.28); font-size: 0.8rem; }
.footer-badge { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.28); font-size: 0.78rem; }
.footer-badge span { color: var(--green); }

/* ---- FADE IN ---- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .guarantee-grid { grid-template-columns: 1fr; gap: 2px; }
  .areas-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .story-visual { min-height: unset; }
  .story-stat-card { padding: 28px 24px; }

  .nav-logo img { height: 86px; }
  .nav-wrap { height: 92px; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn { display: none; }

  .hero { padding: 72px 0 80px; min-height: unset; }
  .hero::after { height: 40px; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-desc { max-width: 100%; }
  .area-inner { flex-direction: column; text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .trust-items { gap: 4px; }
  .trust-divider { display: none; }
  .trust-item { padding: 8px 14px; }
  .hero-stats { width: auto; justify-content: center; }

  .work-grid { grid-template-columns: 1fr; }
  .work-card img { height: 240px; }
  .work-ba-pair { grid-template-columns: 1fr; }
  .work-ba-card img { height: 220px; }
  .estimate-home-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-centered { text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; width: fit-content; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:last-child { border-bottom: none; }
}
