/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1c2a1c;
  line-height: 1.6;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --green-dark:   #005a2f;
  --green-mid:    #008f4c;
  --green-light:  #e8f5ee;
  --gold:         #ffd520;
  --gold-dark:    #e6be00;
  --off-white:    #f5f7f3;
  --text-dark:    #1c2a1c;
  --text-mid:     #3d5440;
  --text-light:   #6b8070;
  --border:       #d0dcc8;
  --shadow:       0 2px 12px rgba(0,90,47,.10);
  --shadow-lg:    0 8px 32px rgba(0,90,47,.15);
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   .25s ease;
}

/* ===== UZIMA FONT ===== */
@font-face {
  font-family: 'Uzima';
  src: url('../fonts/Uzima.otf') format('opentype');
  font-weight: normal;
  font-display: swap;
}

/* ===== UTILITIES ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: .75rem;
}
.section-title {
  font-family: 'Uzima', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.75;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,213,32,.4);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
.btn-green {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
}
.btn-green:hover {
  background: #004424;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-call {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
  font-weight: 700;
  gap: .4rem;
}
.btn-call:hover {
  background: #e6be00;
  border-color: #e6be00;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-outline-green {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline-green:hover {
  background: var(--green-dark);
  color: #fff;
}

/* ===== NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 50px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: .03em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 2px;
  background: var(--green-mid);
  transition: right var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-links a:hover,
.nav-links a.active { color: var(--green-mid); }
.nav-links .btn::after { display: none; }
.nav-links .btn:hover { transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 24px 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: .875rem 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover { color: var(--green-mid); }
.nav-mobile .btn {
  width: 100%;
  justify-content: center;
  margin-top: 1.25rem;
  padding: .9rem 2rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-lawn.jpg');
  background-image: image-set(url('../images/hero-lawn.webp') type('image/webp'), url('../images/hero-lawn.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,30,12,.78) 0%,
    rgba(0,55,25,.60) 55%,
    rgba(0,80,40,.38) 100%
  );
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hero-content { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,213,32,.12);
  border: 1px solid rgba(255,213,32,.35);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Uzima', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.18);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Uzima', Georgia, serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .3rem;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--green-dark);
  padding: 1.25rem 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ===== SERVICES (homepage) ===== */
.services { padding: 100px 0; background: var(--off-white); }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .section-lead { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 210px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-body { padding: 1.75rem; }
.service-icon {
  width: 46px; height: 46px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-family: 'Uzima', Georgia, serif;
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: .6rem;
}
.service-card p {
  color: var(--text-mid);
  font-size: .88rem;
  margin-bottom: 1.1rem;
  line-height: 1.65;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.service-tag {
  font-size: .75rem;
  font-weight: 600;
  background: var(--green-light);
  color: var(--green-dark);
  padding: .28rem .65rem;
  border-radius: 999px;
}
.services-footer { text-align: center; margin-top: 2.5rem; }

/* ===== WORK GALLERY ===== */
.work { padding: 100px 0; background: var(--green-dark); }
.work-header { text-align: center; margin-bottom: 3.5rem; }
.work-header .section-tag { color: var(--gold); }
.work-header .section-title { color: #fff; }
.work-header .section-lead { color: rgba(255,255,255,.72); margin: 0 auto; }

.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 270px 270px;
  gap: 12px;
}
.work-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.work-item--tall { grid-row: span 2; }
.work-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.work-item:hover img { transform: scale(1.05); }
.work-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(0,30,12,.75) 0%, transparent 100%);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition);
}
.work-item:hover .work-caption { opacity: 1; transform: translateY(0); }

/* ===== PROCESS ===== */
.process { padding: 100px 0; background: #fff; }
.process-header { text-align: center; margin-bottom: 4rem; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 2px;
  background: var(--border);
}
.process-step { text-align: center; position: relative; }
.step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--gold);
  font-family: 'Uzima', Georgia, serif;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}
.process-step h4 {
  font-family: 'Uzima', Georgia, serif;
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: .4rem;
}
.process-step p {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--off-white); }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green-mid);
  display: flex;
  flex-direction: column;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; margin-bottom: 1rem; }
.testimonial-text {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.author-initials {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--text-dark); font-size: .88rem; }
.author-location { font-size: .78rem; color: var(--text-light); margin-top: .1rem; }
.testimonials-footer { text-align: center; margin-top: 2rem; }
.testimonials-footer a { color: var(--green-mid); font-size: .88rem; font-weight: 600; }
.testimonials-footer a:hover { text-decoration: underline; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #003d1f 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%; right: -8%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,213,32,.04);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Uzima', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #fff;
  margin-bottom: .4rem;
}
.cta-text p { color: rgba(255,255,255,.72); font-size: .95rem; }
.cta-actions { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }
.cta-phone {
  color: var(--gold);
  font-family: 'Uzima', Georgia, serif;
  font-size: 1.55rem;
  font-weight: bold;
  letter-spacing: .02em;
}
.cta-phone:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.site-footer {
  background: #091408;
  color: rgba(255,255,255,.68);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 50px; margin-bottom: 1rem; }
.footer-brand p {
  font-size: .85rem;
  line-height: 1.75;
  max-width: 260px;
  color: rgba(255,255,255,.55);
}
.footer-col h4 {
  font-family: 'Uzima', Georgia, serif;
  font-size: .95rem;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
}
.footer-contact-item:last-child { margin-bottom: 0; }
.fci-icon {
  color: var(--green-mid);
  flex-shrink: 0;
  margin-top: 2px;
}
.fci-icon svg { width: 16px; height: 16px; }
.footer-contact-item span,
.footer-contact-item a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 0 72px;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/lawn-bg.jpg');
  background-image: image-set(url('../images/lawn-bg.webp') type('image/webp'), url('../images/lawn-bg.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center;
  opacity: .12;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb-sep { opacity: .4; }
.page-hero h1 {
  font-family: 'Uzima', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  margin-bottom: .75rem;
  line-height: 1.15;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 540px;
  line-height: 1.75;
}

/* ===== ABOUT PAGE ===== */
.about-intro { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-photos {
  position: relative;
  height: 500px;
}
.about-photo-main {
  position: absolute;
  left: 0; top: 0;
  width: 78%;
  height: 370px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo-accent {
  position: absolute;
  right: 0; bottom: 0;
  width: 58%;
  height: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
}
.about-photo-main img,
.about-photo-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-years-badge {
  position: absolute;
  left: 0; bottom: 54px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}
.about-years-badge .num {
  font-family: 'Uzima', Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}
.about-years-badge .lbl {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .2rem;
}
.about-content .section-lead { max-width: 100%; }
.about-content blockquote {
  border-left: 4px solid var(--gold);
  padding: .75rem 0 .75rem 1.25rem;
  margin: 2rem 0;
  font-size: 1rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.75;
}

/* ===== VALUES ===== */
.values { padding: 80px 0; background: var(--off-white); }
.values-header { text-align: center; margin-bottom: 3rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.value-num {
  font-family: 'Uzima', Georgia, serif;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: .75rem;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--border) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.value-card h3 {
  font-family: 'Uzima', Georgia, serif;
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: .5rem;
}
.value-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.65; }

/* ===== SERVICES PAGE ===== */
.services-full { padding: 100px 0; }
.services-category { margin-bottom: 80px; }
.services-category:last-child { margin-bottom: 0; }

.category-intro {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.category-icon {
  width: 60px; height: 60px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.category-icon svg { width: 28px; height: 28px; }
.category-intro h2 {
  font-family: 'Uzima', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--green-dark);
  margin-bottom: .4rem;
}
.category-intro p { color: var(--text-mid); font-size: .92rem; line-height: 1.65; }

.category-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.category-body.flipped { direction: rtl; }
.category-body.flipped > * { direction: ltr; }

.category-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow);
}
.category-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.services-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}
.service-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid var(--border);
}
.service-item-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Uzima', Georgia, serif;
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.contact-info > p { color: var(--text-mid); margin-bottom: 2.5rem; line-height: 1.7; }

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.cd-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-icon svg { width: 20px; height: 20px; color: var(--green-dark); }
.cd-text strong {
  display: block;
  font-size: .78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .3rem;
}
.cd-text a,
.cd-text span { font-size: .92rem; color: var(--text-dark); line-height: 1.5; }
.cd-text a:hover { color: var(--green-mid); }

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-success {
  background: #e9f7ef;
  border: 1px solid #a8d5b5;
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  color: #1a5c35;
  font-size: 1.1rem;
  text-align: center;
}
.contact-form-wrap h3 {
  font-family: 'Uzima', Georgia, serif;
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .38rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,143,76,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-submit { width: 100%; margin-top: .5rem; justify-content: center; }

.map-section { padding: 0 0 100px; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-grid { gap: 3rem; }
  .work-grid { grid-template-columns: 1.1fr 1fr; grid-template-rows: 255px 255px 255px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .services-grid,
  .testimonials-grid,
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photos { height: 280px; margin-bottom: 2rem; }
  .about-photo-main { position: static; width: 100%; height: 100%; }
  .about-photo-accent,
  .about-years-badge { display: none; }

  .work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .work-item--tall { grid-row: auto; height: 260px; }
  .work-item { height: 220px; }

  .category-body,
  .category-body.flipped { grid-template-columns: 1fr; direction: ltr; }

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

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .trust-items { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .services-items { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}

/* Sticky mobile call bar */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--gold);
  color: var(--green-dark);
  text-align: center;
  padding: 0;
  box-shadow: 0 -2px 12px rgba(0,0,0,.18);
}
.sticky-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-dark);
  text-decoration: none;
  width: 100%;
}
@media (max-width: 768px) {
  .sticky-call-bar { display: block; }
  body { padding-bottom: 56px; }
}

/* Accessibility */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--green-dark);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  z-index: 10000;
  text-decoration: none;
  transition: top .2s;
}
.skip-nav:focus { top: 0; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ===== SEASONAL PAGES ===== */
.season-tips { padding: 80px 0; background: var(--green-dark); }
.season-tips-header { text-align: center; margin-bottom: 2.5rem; }
.season-tips .section-tag { color: var(--gold); }
.season-tips .section-title { color: #fff; }
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tip-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.tip-num {
  font-family: 'Uzima', Georgia, serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.tip-card h4 {
  font-family: 'Uzima', Georgia, serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: .5rem;
}
.tip-card p { font-size: .88rem; color: rgba(255,255,255,.68); line-height: 1.7; }

@media (max-width: 768px) { .tips-grid { grid-template-columns: 1fr; } }

/* WhatsApp floating button */
.whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 1.25rem;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
}
.whatsapp-btn svg { display: block; }
@media (max-width: 768px) {
  .whatsapp-btn { bottom: 72px; }
}
