/* ================================
   WILLOW GARDENS LTD
   Natural, earthy palette — forest green + warm earth
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --green-deep: #2D5F2D;
  --green-dark: #1E4D2B;
  --green-forest: #3A7D44;
  --green-sage: #8FBC8F;
  --green-light: #A8D5A2;
  --earth-brown: #6B4226;
  --earth-warm: #8B6914;
  --earth-light: #C4A265;
  --accent-warm: #C85A2E;
  --accent-warm-dark: #A04A24;
  --cream: #FAF8F2;
  --cream-dark: #F0EDE4;
  --white: #ffffff;
  --off-white: #F7F5EF;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --gray-dark: #374151;
  --text: #1f2937;
  --text-light: #4b5563;
  --border: rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

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

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ================================
   NAV
   ================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0);
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-logo span {
  color: var(--earth-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--earth-light);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--earth-light);
  transition: color 0.2s;
}

.nav-phone svg {
  flex-shrink: 0;
}

.nav-phone:hover {
  color: var(--white);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 77, 43, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}

.mobile-link:hover {
  color: var(--green-light);
}

.mobile-phone {
  color: var(--green-light) !important;
  margin-top: 16px;
  font-weight: 700 !important;
  border: none !important;
}

/* ================================
   HERO
   ================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 24px;
  overflow: hidden;
  background: #0a1410;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroKenBurns 21s infinite;
  will-change: opacity, transform;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 7s; }
.hero-slide:nth-child(3) { animation-delay: 14s; }

@keyframes heroKenBurns {
  0%   { opacity: 0; transform: scale(1.05); }
  4%   { opacity: 1; }
  33%  { opacity: 1; transform: scale(1.15); }
  38%  { opacity: 0; }
  100% { opacity: 0; transform: scale(1.05); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 20, 10, 0.85) 0%, rgba(15, 35, 20, 0.75) 40%, rgba(10, 25, 15, 0.8) 70%, rgba(10, 20, 10, 0.88) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 58, 26, 0.3) 0%,
    transparent 30%,
    transparent 70%,
    rgba(26, 58, 26, 0.5) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  animation: fadeUp 0.8s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(168, 213, 162, 0.1);
  border: 1px solid rgba(168, 213, 162, 0.25);
  color: var(--green-light);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-badge svg {
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 68px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--green-light);
}

.hero p {
  font-size: 19px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--earth-light);
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(196, 162, 101, 0.3);
}

.btn-primary:hover {
  background: #d4b478;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 162, 101, 0.45);
}

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

.btn-outline:hover {
  border-color: var(--green-light);
  color: var(--green-light);
  transform: translateY(-2px);
}

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

.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ================================
   SECTIONS
   ================================ */
.section {
  padding: 78px 0;
}

.section-alt {
  background: var(--off-white);
}

/* Dark section — full-bleed forest green */
.section-dark {
  background: linear-gradient(135deg, #1a3e20 0%, #0f2a17 100%);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 90, 46, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.section-dark .container {
  position: relative;
  z-index: 1;
}

.section-dark .section-label {
  color: var(--accent-warm);
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .accent {
  color: var(--accent-warm);
}

.section-dark .section-sub {
  color: rgba(255,255,255,0.7);
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-warm);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.accent {
  color: var(--accent-warm);
}

.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 550px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ================================
   ABOUT
   ================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  margin-top: 40px;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  min-height: 340px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .about-image { min-height: 0; height: 260px; }
}

.about-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text strong {
  color: var(--text);
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-content: center;
}

.highlight-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s;
}

.highlight-card:hover {
  border-color: rgba(45, 95, 45, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.highlight-icon {
  margin-bottom: 12px;
  color: var(--green-deep);
}

.highlight-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.highlight-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ================================
   SERVICES
   ================================ */
.service-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-cat {
  padding: 32px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
}

.service-cat:hover {
  border-color: rgba(45, 95, 45, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.service-cat-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 95, 45, 0.08);
  border-radius: 14px;
  color: var(--green-deep);
  margin-bottom: 18px;
}

.service-cat h3 {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
}

.service-cat-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 10px;
}

.service-cat-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--accent-warm);
  border-radius: 50%;
}

.service-cat-list li:last-child { margin-bottom: 0; }

/* Services on dark green — glass cards */
.section-dark .service-cat {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}
.section-dark .service-cat:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,90,46,0.45);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.section-dark .service-cat-icon {
  background: rgba(200,90,46,0.15);
  border: 1px solid rgba(200,90,46,0.3);
  color: var(--accent-warm);
}
.section-dark .service-cat h3 { color: var(--white); }
.section-dark .service-cat-list li { color: rgba(255,255,255,0.72); }

/* chevron hidden on desktop (cards always open) */
.cat-chev { display: none; }

/* Phone: service categories become a tap-to-open accordion */
@media (max-width: 768px) {
  .section-dark .service-cat { padding: 0; cursor: pointer; }
  .service-cat-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
  }
  .service-cat-head .service-cat-icon {
    margin-bottom: 0;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }
  .service-cat-head h3 { margin-bottom: 0; font-size: 18px; }
  .cat-chev {
    display: flex;
    margin-left: auto;
    color: var(--accent-warm);
    transition: transform 0.3s ease;
  }
  .service-cat.open .cat-chev { transform: rotate(180deg); }
  .service-cat-list {
    display: none;
    padding: 0 18px 18px 20px;
  }
  .service-cat.open .service-cat-list { display: block; }
}

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

.service-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: rgba(200, 90, 46, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  margin-bottom: 14px;
  color: var(--green-deep);
  transition: color 0.3s ease;
}

.service-card:hover .service-icon {
  color: var(--accent-warm);
}

/* Also available — pill list */
.services-also {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px dashed rgba(0,0,0,0.12);
  text-align: center;
}

.services-also-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: 10px;
  vertical-align: middle;
}

.service-pill {
  display: inline-block;
  padding: 8px 16px;
  margin: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  transition: all 0.25s ease;
  vertical-align: middle;
}

.service-pill:hover {
  border-color: var(--accent-warm);
  color: var(--accent-warm);
  transform: translateY(-2px);
}

.service-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.service-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ================================
   PROJECTS
   ================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  position: relative;
  background: var(--off-white);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

.project-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  font-family: 'Fraunces', serif;
  letter-spacing: 0.2px;
}

.project-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ================================
   WHY CHOOSE US
   ================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(200, 90, 46, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.why-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 90, 46, 0.15);
  border: 1px solid rgba(200, 90, 46, 0.3);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--accent-warm);
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ================================
   CONTACT
   ================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  margin-top: 8px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-content: start;
}

.contact-card {
  padding: 24px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.contact-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-card h3 svg {
  color: var(--green-deep);
  flex-shrink: 0;
}

.contact-card p,
.contact-card a {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  display: block;
}

.contact-card a:hover {
  color: var(--green-deep);
}

.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.contact-form-wrap h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px rgba(45, 95, 45, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-light);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  color: #22c55e;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: 'Fraunces', serif;
  color: var(--text);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray);
  font-size: 15px;
}

/* ================================
   FOOTER
   ================================ */
.footer {
  background: var(--green-dark);
  padding: 60px 0 30px;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col a.footer-ig {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col a.footer-ig svg { flex-shrink: 0; }

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--green-light);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--green-light);
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-powered {
  text-align: center;
  padding: 16px 0 0;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.75rem;
  opacity: 0.5;
  color: rgba(255,255,255,0.7);
}

.footer-powered a {
  color: inherit;
  text-decoration: underline;
}

.footer-powered a:hover {
  color: var(--green-light);
}

/* ================================
   STATS BAR
   ================================ */
.stats-bar {
  background: #1a1a1a;
  padding: 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 22px 16px;
}

.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ================================
   PROJECT IMAGES
   ================================ */
.project-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 20, 10, 0.92) 0%,
    rgba(10, 20, 10, 0.55) 35%,
    rgba(10, 20, 10, 0.1) 65%,
    transparent 100%
  );
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px;
  z-index: 2;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}

.project-card:hover .project-info {
  transform: translateY(0);
}

.project-info::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent-warm);
  margin-bottom: 12px;
  transform-origin: left;
  transform: scaleX(0.6);
  transition: transform 0.4s ease;
}

.project-card:hover .project-info::before {
  transform: scaleX(1);
}

/* ================================
   TESTIMONIALS
   ================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(45, 95, 45, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.testimonial-quote {
  color: var(--green-deep);
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-author strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--gray);
}

.testimonial-author span::before {
  content: '|';
  margin-right: 8px;
  color: var(--border);
}

/* ================================
   REVIEWS CAROUSEL
   ================================ */
.reviews-carousel {
  position: relative;
  max-width: 1080px;
  margin: 48px auto 0;
}
.reviews-viewport { overflow: hidden; }
.reviews-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.reviews-track .testimonial-card { margin: 4px 0; }
.rev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--green-deep);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
  z-index: 3;
}
.rev-arrow:hover {
  background: var(--green-deep);
  color: #fff;
  border-color: var(--green-deep);
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}
.reviews-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(45,95,45,0.25);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}
.reviews-dots button.active {
  background: var(--accent-warm);
  transform: scale(1.3);
}

/* Desktop: only 3 reviews — show them all, no carousel/arrows/dots */
@media (min-width: 769px) {
  .reviews-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    transform: none !important;
  }
  .reviews-track .testimonial-card { margin: 0; }
  .rev-arrow,
  .reviews-dots { display: none; }
}

/* Mobile: one-at-a-time carousel with arrows + dots */
@media (max-width: 768px) {
  .reviews-carousel { max-width: 820px; padding: 0 42px; }
  .reviews-track .testimonial-card { flex: 0 0 100%; }
  .rev-arrow { width: 34px; height: 34px; }
  .rev-prev { left: 2px; }
  .rev-next { right: 2px; }
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
  .service-cats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: block; }

  .hero { min-height: auto; padding: 140px 20px 80px; }
  .hero h1 { font-size: 44px; }
  .hero p { font-size: 17px; }

  .section-title { font-size: 34px; }
  .section { padding: 72px 0; }

  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; }
  .stat-divider { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-highlights { grid-template-columns: 1fr 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .about-highlights { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .stats-inner { flex-direction: column; gap: 0; }
  .stat-item { flex: 1 1 100%; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-item:last-child { border-bottom: none; }
  .stat-value { font-size: 14px; }
}

/* ========== CRITICAL MOBILE FIX ========== */
html, body { overflow-x: hidden; }

@media (max-width: 768px) {
    body { font-size: 15px; }
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.5rem !important; }
    .hero { min-height: 80vh; padding: 100px 20px 60px; }
    .hero p { font-size: 0.95rem; }
    .section { padding: 60px 0; }

    .service-cats,
    .services-grid,
    .why-grid,
    .about-grid,
    .projects-grid,
    .contact-grid,
    .footer-inner {
        grid-template-columns: 1fr !important;
    }

    /* Keep highlights 2-up on mobile to cut page length */
    .about-highlights {
        grid-template-columns: 1fr 1fr !important;
    }

    /* Reviews become a horizontal swipe carousel on mobile */
    .testimonials-grid {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 14px;
        margin-left: -16px;
        margin-right: -16px;
        padding: 4px 16px 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .testimonials-grid::-webkit-scrollbar { display: none; }
    .testimonial-card {
        flex: 0 0 84%;
        scroll-snap-align: center;
    }

    .stats-inner {
        flex-wrap: wrap;
    }

    .form-row {
        grid-template-columns: 1fr !important;
    }

    .nav-links, .nav-phone { display: none; }
    .hamburger { display: block !important; }

    iframe { width: 100% !important; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.7rem !important; }
    h2 { font-size: 1.3rem !important; }
    .container { padding: 0 16px; }
    .hero { padding: 90px 16px 50px; }
}

/* ================================
   NAV LOGO IMAGE
   ================================ */
.nav-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s ease;
}

/* ================================
   HERO LOGO
   ================================ */
.hero-logo {
  width: 230px;
  height: auto;
  margin: 0 auto 22px;
  display: block;
}

/* ================================
   FOOTER LOGO IMAGE
   ================================ */
.footer-logo-img {
  height: 58px;
  width: auto;
  margin-bottom: 12px;
}

/* ================================
   AREAS WE COVER
   ================================ */
.areas-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  margin-top: 32px;
  align-items: stretch;
}

.areas-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  min-height: 440px;
  background: var(--off-white);
}

.areas-map iframe {
  display: block;
  filter: saturate(0.9);
}

.areas-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}

.areas-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 18px;
}

.areas-county-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}

.areas-county-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.areas-county-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-warm);
  border-radius: 50%;
  flex-shrink: 0;
}

.areas-note {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.areas-note a {
  color: var(--accent-warm);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.areas-note a:hover {
  color: var(--accent-warm-dark);
}

@media (max-width: 768px) {
  .areas-grid { grid-template-columns: 1fr; gap: 24px; }
  .areas-map { min-height: 300px; }
}

/* ================================
   FAQ ACCORDION
   ================================ */
.faq-list {
  max-width: 750px;
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
}

.faq-question:hover {
  color: var(--green-deep);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gray);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  padding-bottom: 20px;
}

/* ================================
   NEW SECTIONS RESPONSIVE
   ================================ */
@media (max-width: 768px) {
  .faq-list { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-logo { width: 180px; }
}

/* ================================
   CTA BAND
   ================================ */
.cta-band {
  background: linear-gradient(135deg, #1a3e20 0%, #0f2a17 60%, #1a3e20 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(200, 90, 46, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(168, 213, 162, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.cta-band-text h2 {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.cta-band-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 480px;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-band { padding: 60px 0; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .cta-band-text p { margin: 0 auto; }
  .cta-band-actions { justify-content: center; }
  .cta-band-text h2 { font-size: 30px; }
}
