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

:root {
  --green:       #3a7d44;
  --green-dark:  #2c5f35;
  --green-light: #e8f5eb;
  --white:       #ffffff;
  --off-white:   #f7f9f7;
  --dark:        #151f17;
  --gray:        #6b7a6e;
  --gray-light:  #e2e8e3;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(0,0,0,.10);
  --transition:  .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* ===== UTILITIES ===== */
.container { width: 90%; max-width: 1140px; margin-inline: auto; }

.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary  { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline  { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--green); }
.btn-white    { background: var(--white); color: var(--green); }
.btn-white:hover { background: var(--off-white); }
.btn-sm   { padding: .5rem 1.25rem; font-size: .875rem; }
.btn-full { width: 100%; }

.section       { padding: 80px 0; }
.section-dark  { background: var(--dark); color: var(--white); }
.section-green { background: var(--green); color: var(--white); }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: .5rem;
}
.section-sub {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}
.section-dark .section-sub { color: #a0b0a5; }
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .75rem;
}
.section-eyebrow.light { color: #a8e6b4; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* Gallery coming soon */
.gallery-coming-soon {
  background: var(--off-white);
  border: 2px dashed var(--gray-light);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
}

/* ===== NAV WRAPPER (banner + nav share one backdrop) ===== */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1002;
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ===== TOP SEASONAL BANNER ===== */
.top-banner {
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 3rem;
  font-size: .82rem;
  font-family: 'Inter', sans-serif;
  color: rgba(21,31,23,.85);
  opacity: 0;
  transition: opacity .5s ease;
}
.top-banner.visible { opacity: 1; }
.top-banner a { color: var(--green); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.top-banner-close {
  position: absolute;
  right: .85rem;
  background: none;
  border: none;
  color: rgba(21,31,23,.45);
  font-size: .85rem;
  cursor: pointer;
  padding: .4rem .5rem;
  line-height: 1;
  transition: color .2s;
}
.top-banner-close:hover { color: var(--dark); }
body.banner-active .top-banner { display: flex; }
@media (max-width: 600px) {
  .top-banner { font-size: .74rem; padding: 0 2.5rem; text-align: center; }
}

.nav-header {
  position: relative;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  transition: height .25s ease;
}
.nav-wrapper.scrolled .nav-inner { height: 50px; }
.logo { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--dark); letter-spacing: -.01em; }
.logo span { color: var(--green); }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-menu a { color: rgba(21,31,23,.8); font-size: .95rem; font-weight: 500; transition: color var(--transition); }
.nav-menu a:hover { color: var(--dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3320 0%, #2c5f35 50%, #3a7d44 100%);
}
.hero-bg img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: 65% center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,24,16,.30);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 40px;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #a8e6b4;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.75rem, 8vw, 5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.8); margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== WHY STRIP ===== */
.why-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
  padding: 2.5rem 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .35rem; }
.why-icon {
  width: 44px; height: 44px;
  color: var(--green);
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .25rem;
}
.why-icon svg { width: 22px; height: 22px; }
.why-item h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .95rem; }
.why-item p  { font-size: .85rem; color: var(--gray); line-height: 1.4; }

/* ===== COUNTER STRIP ===== */
.counter-strip {
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2rem 1rem;
  flex-wrap: wrap;
}
.counter-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding: 0 3rem;
}
.counter-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.counter-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.counter-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .counter-block { padding: 1rem 2rem; }
  .counter-divider { width: 80%; height: 1px; }
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--gray-light);
  transition: transform var(--transition), box-shadow var(--transition), opacity .65s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: .5rem; }
.service-card p  { color: var(--gray); font-size: .95rem; }
.service-card-photo {
  width: calc(100% + 4rem);
  margin: -2rem -2rem 1.25rem -2rem;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-card-photo img { transform: scale(1.05); }

/* ===== SERVICE CARD CAROUSEL ===== */
.service-card-carousel {
  width: calc(100% + 4rem);
  margin: -2rem -2rem 1.25rem -2rem;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform .45s ease;
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  color: #fff;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background var(--transition);
}
.carousel-btn:hover { background: rgba(0,0,0,.7); }
.carousel-prev { left: .5rem; }
.carousel-next { right: .5rem; }
.carousel-dots {
  position: absolute;
  bottom: .5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .35rem;
  z-index: 3;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background var(--transition);
}
.carousel-dot.active { background: #fff; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 1rem; }
.about-text p  { color: rgba(255,255,255,.75); margin-bottom: 1rem; font-size: .975rem; }
.about-badges  { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.5rem 0; }
.badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .8rem; font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  padding: .35rem .9rem;
  border-radius: 50px;
  letter-spacing: .04em;
}

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-light);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* ===== PLACEHOLDERS ===== */
.img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; padding: 1rem; }
.img-placeholder span { font-size: .8rem; font-family: monospace; line-height: 1.5; }
.about-ph { background: #1f2f22; color: rgba(255,255,255,.4); }
.gal-ph   { background: var(--gray-light); color: var(--gray); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 1rem; }
.contact-info > p { color: rgba(255,255,255,.8); margin-bottom: 1.75rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2rem; }
.contact-list li { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.9); font-size: .975rem; }
.contact-list svg { width: 20px; height: 20px; flex-shrink: 0; opacity: .7; }
.contact-list a { transition: opacity var(--transition); }
.contact-list a:hover { opacity: .75; }
.social-links { display: flex; gap: .75rem; }
.social-links a {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
}
.social-links a:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.social-links svg { width: 20px; height: 20px; }

/* Form */
.contact-form {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  backdrop-filter: blur(6px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
label {
  font-size: .82rem; font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: rgba(255,255,255,.8);
  letter-spacing: .04em; text-transform: uppercase;
}
input, select, textarea {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Inter', sans-serif; font-size: .95rem;
  padding: .7rem 1rem; outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.4); }
select option { background: var(--green-dark); color: var(--white); }
input:focus, select:focus, textarea:focus {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.18);
}
textarea { resize: vertical; }

/* Checkboxes */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem .75rem;
  margin-top: .25rem;
}
.checkbox-label {
  display: flex; align-items: center; gap: .55rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 400;
  color: rgba(255,255,255,.85);
  text-transform: none; letter-spacing: 0;
  padding: .5rem .75rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  transition: background var(--transition), border-color var(--transition);
}
.checkbox-label:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.3); }
.checkbox-label input[type="checkbox"] { width: 16px; height: 16px; min-width: 16px; padding: 0; border-radius: 4px; accent-color: var(--green-light); cursor: pointer; }
.checkbox-label:has(input:checked) { background: rgba(168,230,180,.15); border-color: rgba(168,230,180,.4); }

.form-note { font-size: .85rem; text-align: center; color: rgba(255,255,255,.7); min-height: 1.2em; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 2rem 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: rgba(255,255,255,.45); font-size: .875rem; }
.footer-logo { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.1rem; color: var(--white); }
.footer-logo span { color: var(--green); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: rgba(255,255,255,.4); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .8rem; letter-spacing: .05em; transition: color var(--transition); }
.footer-social a:hover { color: var(--white); }

/* ===== STICKY MOBILE BUTTONS ===== */
.mobile-cta-group {
  display: none;
  position: fixed;
  bottom: 1rem; right: 1rem;
  z-index: 999;
  flex-direction: column;
  gap: .6rem;
  align-items: flex-end;
}
.mobile-cta {
  background: var(--green);
  color: var(--white);
  padding: .85rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(58,125,68,.4);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .9rem;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.mobile-cta-quote { background: var(--green-dark); }
.mobile-cta:hover  { transform: translateY(-2px); }
.mobile-cta:active { transform: scale(.97); }
.mobile-cta svg { width: 18px; height: 18px; }


/* ===== RECENT JOBS GRID ===== */
.jobs-section { background: var(--off-white); }
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-section {
  min-height: calc(100svh - 140px);
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: var(--off-white);
}
.thankyou-inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.thankyou-icon {
  width: 80px; height: 80px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.thankyou-icon svg { width: 40px; height: 40px; }
.thankyou-inner h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--dark);
}
.thankyou-sub { font-size: 1.05rem; color: var(--gray); line-height: 1.7; }
.thankyou-details {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  width: 100%;
  text-align: left;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--gray-light);
}
.thankyou-detail {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: var(--dark);
}
.thankyou-detail svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--green); }
.thankyou-detail a { color: var(--green); font-weight: 600; text-decoration: underline; }

/* ===== WAVE DIVIDERS ===== */
.wave-divider { line-height: 0; overflow: hidden; display: block; }
.wave-divider svg { display: block; width: 100%; height: 70px; }
.wave-from-white     { background: var(--white); }
.wave-from-offwhite  { background: var(--off-white); }
.wave-from-dark      { background: var(--dark); }
.wave-from-green-dark { background: var(--green-dark); }
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; height: 70px; }

/* ===== BEFORE & AFTER SLIDER ===== */
.ba-section { background: var(--off-white); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  touch-action: pan-y;
}
.ba-after {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  overflow: hidden;
  width: 50%;
}
.ba-before img {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  object-fit: cover;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 4;
}
.ba-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: white;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(0,0,0,.4);
}
.ba-btn {
  position: relative;
  z-index: 5;
  background: white;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  letter-spacing: .05em;
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
  color: var(--dark);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
.ba-label {
  position: absolute;
  top: .75rem;
  background: rgba(0,0,0,.55);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 4px;
  z-index: 3;
  pointer-events: none;
}
.ba-label-before { left: .75rem; }
.ba-label-after  { right: .75rem; }
.ba-coming-soon {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  border: 2px dashed var(--gray-light);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-coming-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  color: var(--gray);
  text-align: center;
}
.ba-coming-inner svg { opacity: .35; }
.ba-coming-inner p { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; color: var(--dark); }
.ba-coming-inner span { font-size: .85rem; color: var(--gray); letter-spacing: .06em; text-transform: uppercase; font-family: 'Montserrat', sans-serif; font-weight: 600; }

/* ===== PAGE HERO (quote page) ===== */
.page-hero {
  background: var(--dark);
  padding: 120px 0 60px;
  text-align: center;
}
.page-hero-content { max-width: 600px; margin-inline: auto; }
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; }

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--white); }
.how-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}
.how-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.how-num {
  width: 60px; height: 60px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(58,125,68,.3);
}
.how-step h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.05rem; }
.how-step p  { color: var(--gray); font-size: .95rem; line-height: 1.65; }
.how-arrow {
  font-size: 2rem;
  color: var(--gray-light);
  align-self: center;
  padding-bottom: 2.5rem;
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.stars { color: #f5a623; font-size: 1.1rem; letter-spacing: .05em; }
.testimonial-card p { color: var(--dark); font-size: .95rem; line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-author { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .85rem; color: var(--green); }

/* ===== CTA STRIP ===== */
.cta-strip { background: var(--green-dark); padding: 3.5rem 0; }
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: .35rem;
}
.cta-strip-text p { color: rgba(255,255,255,.75); font-size: 1rem; }
.cta-strip-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }
.btn-outline-white {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  background: transparent;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-align: center;
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-2px); }

/* ===== SERVICE AREA TAGS ===== */
.area-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.5rem; }
.area-tag {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.75);
  font-size: .75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 50px;
  letter-spacing: .03em;
}

/* Urgency note */
.urgency-note { font-size: .82rem; color: rgba(255,255,255,.6); text-align: center; }

/* ===== GOOGLE REVIEW CARDS ===== */
.review-header {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .5rem;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.reviewer-info { flex: 1; min-width: 0; }
.reviewer-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.google-icon { width: 20px; height: 20px; flex-shrink: 0; }
.review-time { font-size: .8rem; color: var(--gray); margin-top: .25rem; }
.reviews-cta { text-align: center; margin-top: 2.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image { max-width: 480px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .how-grid { flex-direction: column; align-items: center; }
  .how-arrow { display: none; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }
  .ba-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(21,31,23,.97);
    flex-direction: column; align-items: stretch;
    padding: 1.5rem 1.25rem; gap: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 1rem; }
  .nav-menu .btn { margin-top: 1rem; text-align: center; border-radius: 8px; }

  .hero h1 { font-size: 2.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
  .mobile-cta-group { display: flex; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== FAQ ===== */
.faq-section { background: var(--off-white); }
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.35rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  text-align: left;
  gap: 1rem;
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform var(--transition);
  color: var(--green);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.35rem;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 1.35rem 1.15rem;
}
.faq-a p { font-size: .9rem; color: var(--gray); line-height: 1.7; }
