/* Sticky mobile call/quote bar and visible breadcrumbs.
   Breakpoint matches mobile-nav.css (760px). z-index stays under the mobile
   menu (.links, 100) and the header (200) so an open menu covers the bar. */

.sticky-cta { display: none; }

@media (max-width: 760px) {
  .sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(251, 250, 246, .94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(28, 43, 33, .12);
    box-shadow: 0 -6px 24px rgba(28, 43, 33, .10);
  }

  .sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px; /* comfortable touch target */
    padding: 0 12px;
    border-radius: 999px;
    font: 800 15px 'Archivo', Arial, sans-serif;
    line-height: 1.1;
    text-align: center;
  }

  .sticky-cta-call { background: #f5c518; color: #1c2b21; }
  .sticky-cta-quote { background: #1c2b21; color: #fff; }
  .sticky-cta a:active { transform: translateY(1px); }

  /* Keep the bar from covering the end of the page. */
  body { padding-bottom: 80px; }
}

@media (max-width: 360px) {
  .sticky-cta a { font-size: 14px; }
}

/* Visible breadcrumbs — mirrors the BreadcrumbList schema already on these
   pages, so users get the same trail search engines do. */
.breadcrumbs {
  background: #f1f4f0;
  border-bottom: 1px solid rgba(28, 43, 33, .09);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  list-style: none;
  font: 600 13px 'Archivo', Arial, sans-serif;
  color: #5b6b61;
}

.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs li + li::before { content: "\203A"; color: #9aa8a0; }
.breadcrumbs a { color: #2e7d46; }
.breadcrumbs a:hover { color: #1e5c31; text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: #1c2b21; font-weight: 800; }

/* Embedded map on the contact page. */
.map-embed {
  display: block;
  width: 100%;
  height: 320px;
  margin-top: 22px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(28, 43, 33, .12);
}
