/* Deliberately retained as a lightweight extension point for approved future refinements.
   Shared visual rules belong in style.css so cPanel deployment has one dependable CSS source. */

/* contact form */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* services page */
.side-card-actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.side-card-actions .button {
  width: 100%;
}

.button-outline-dark {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-outline-dark:hover {
  background: var(--ink);
  color: #fff;
}



/* about page */
.steps .step {
  display: flex;
  flex-direction: column;
}

.step-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--ink);
  font: 800 0.65rem Manrope, sans-serif;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.step-link:hover {
  color: var(--flame);
}

/* Improve readability in the three About-page action cards. */
.steps .step h3 {
  letter-spacing: -0.01em;
  word-spacing: 0.06em;
}

.steps .step p {
  letter-spacing: 0.008em;
  word-spacing: 0.05em;
  line-height: 1.65;
}


/* Give About-page hero actions deliberate separation from the intro copy. */
.page-hero .hero-actions {
  margin-top: 1.35rem;
}


/* Make useful FAQ links distinct without turning answers into button-heavy copy. */
.faq-inline-link {
  color: var(--ink);
  font-weight: 800;
  text-decoration-line: underline;
  text-decoration-color: var(--flame);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.faq-inline-link:hover {
  color: var(--flame);
}


/* Reveal more of the road image in the contact location card. */
.map-card {
  background:
    linear-gradient(135deg, rgba(44, 57, 63, 0.78), rgba(25, 32, 36, 0.70)),
    url('/assets/images/road.jpg') center / cover;
}

.map-card p,
.map-card a {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.48);
}

/* Quiet, readable attribution in the lower-right footer metadata line. */
.footer-attribution {
  color: #c9c1b6;
  text-decoration-color: rgba(215, 126, 117, 0.7);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.footer-attribution:hover {
  color: var(--flame-light);
}

/* Keep the footer brand lockup consistent with the horizontal site header. */
.footer-grid a.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  margin-bottom: 0.9rem;
  color: #fff;
  text-decoration: none;
}

.footer-grid a.footer-brand img {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
}

/* On light paper sections, request-intro copy must use a dark readable color.
   The home-page steel request panel continues using its existing light text. */
.section-paper .request-intro > p:not(.eyebrow) {
  color: #4a4f52;
}


/* Improve readability of the short footer description below the logo. */
.footer-grid > div:first-child > p {
  letter-spacing: 0.008em;
  word-spacing: 0.07em;
  line-height: 1.72;
}
