/* Site-wide marketing CTA bar + homepage credibility strip */
.site-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 115;
  background: var(--tea-green-deep, #1d3326);
  color: #fff;
  box-shadow: 0 -2px 18px rgba(0, 0, 0, 0.18);
}
.site-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 18px;
}
.site-cta-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.3;
  flex: 1;
  color: #fff;
}
.site-cta-btn {
  background: #fff;
  color: var(--tea-green-deep, #1d3326);
  border: 0;
  white-space: nowrap;
}
.site-cta-btn:hover {
  background: #eef3ee;
}
.site-cta-close {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}
.site-cta-close:hover {
  color: #fff;
}
body.has-site-cta {
  padding-bottom: 58px;
}
.enquiry-fab {
  bottom: 70px;
}

/* Homepage credibility strip */
.site-credibility {
  background: var(--tea-green-deep, #1d3326);
  color: #fff;
}
.site-credibility .section-head h2,
.site-credibility .eyebrow {
  color: #fff;
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.cred-item {
  border-left: 2px solid rgba(255, 255, 255, 0.35);
  padding: 6px 16px;
}
.cred-item strong {
  display: block;
  font-size: 1.25rem;
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
}
.cred-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 760px) {
  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .site-cta-text {
    font-size: 0.82rem;
  }
  .site-cta-inner {
    gap: 10px;
    padding: 8px 12px;
  }
  .enquiry-fab {
    bottom: 72px;
  }
  body.has-site-cta {
    padding-bottom: 66px;
  }
}
