/* Cyrwus Contracting — SEO/UX enhancement layer.
   Loaded after the main bundle. Adds styles for elements introduced during the
   SEO build: breadcrumbs, footer NAP block, trust strip, three-up service grid. */

/* ---------- layout safety: never let an image shift the page ---------- */
img {
  max-width: 100%;
  height: auto;
}

/* ---------- breadcrumbs ---------- */
.breadcrumbs {
  background: var(--forge, #0e1210);
  color: var(--chalk, #f4f1ec);
  border-bottom: 1px solid var(--line-dark, #ffffff1a);
  padding-top: calc(var(--header-h, 76px) + 14px);
  padding-bottom: 14px;
  font-size: 0.78rem;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  letter-spacing: 0.02em;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.62;
}
.breadcrumbs li + li::before {
  content: "/";
  opacity: 0.45;
}
.breadcrumbs a {
  color: inherit;
  text-underline-offset: 3px;
}
.breadcrumbs a:hover {
  opacity: 1;
}
.breadcrumbs [aria-current="page"] {
  opacity: 0.95;
  font-weight: 700;
}
/* the hero already reserves space for the fixed header; the breadcrumb bar sits
   above it, so pull the following hero back up under it */
.breadcrumbs + main .route-hero .route-hero__inner {
  padding-top: clamp(56px, 7vw, 96px);
}

/* ---------- trust strip ---------- */
.trust-strip {
  background: var(--graphite, #171c1a);
  color: var(--chalk, #f4f1ec);
  border-bottom: 1px solid var(--line-dark, #ffffff1a);
}
.trust-strip ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 0;
  padding: 30px 0;
  list-style: none;
}
.trust-strip strong {
  display: block;
  font: 800 0.72rem/1 "Instrument Sans", Arial, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--worklight, #e7b643);
  margin-bottom: 9px;
}
.trust-strip span {
  display: block;
  font-size: 0.88rem;
  opacity: 0.68;
  max-width: 30ch;
}

/* ---------- three-up service grid ---------- */
.service-preview-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

/* ---------- service-area / general note section ---------- */
.area-note h2 {
  max-width: 22ch;
  margin-bottom: 18px;
}
.area-note .section-intro {
  max-width: 78ch;
}
.inline-links a {
  text-underline-offset: 4px;
}

/* ---------- video: click to play, no autoplay ---------- */
.build-story__media video {
  cursor: pointer;
  background: var(--graphite, #171c1a);
}

/* ---------- footer: four columns, NAP block, h3 headings ---------- */
.footer-grid {
  grid-template-columns: 1.15fr 0.75fr 0.75fr 0.95fr;
}
footer h3 {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font: 800 0.7rem/1 "Instrument Sans", Arial, sans-serif;
}
footer address {
  font-style: normal;
  opacity: 0.62;
  margin: 14px 0 8px;
  font-size: 0.9rem;
  line-height: 1.55;
}
.footer-hours {
  opacity: 0.5;
  margin: 0 0 6px;
  font-size: 0.82rem;
  max-width: 32ch;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.footer-social li {
  margin: 0;
  opacity: 0.62;
  font-size: 0.82rem;
}
.footer-base {
  font-size: 0.74rem;
}

/* ---------- contact page detail block ---------- */
.contact-details address {
  font-style: normal;
  line-height: 1.6;
  margin: 6px 0 10px;
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .service-preview-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-strip ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 720px) {
  .service-preview-grid--three {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip ul {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }
  .breadcrumbs {
    font-size: 0.74rem;
  }
}
