/* Site overrides — loaded after the Webflow export so it survives a re-export. */

/* Contact cards: the row was sized for four items; three left a dead quarter. */
.horizontal-flex-box {
  flex-wrap: wrap;
}
.box-width {
  max-width: 360px;
}

/* Footer CTA — the template shipped the heading with no action. */
.footer-one-heading {
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 0;
}
.footer-cta-phone {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.footer-cta-phone:hover {
  opacity: 0.7;
}

/* Contact details read as body copy; make the actual contact points prominent. */
.contact-box-one a,
.contact-location {
  font-size: 1.05rem;
  font-weight: 500;
}
.contact-box-one a {
  text-decoration: none;
}
.contact-box-one a:hover {
  text-decoration: underline;
}

/* Legal pages (privacy policy) — the template shipped no long-form text layout. */
.legal-section {
  padding-top: 90px;
  padding-bottom: 110px;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-top: 48px;
  margin-bottom: 14px;
}
.legal-content h2:first-of-type {
  margin-top: 8px;
}
.legal-content p,
.legal-content li {
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content ul {
  padding-left: 22px;
  margin-bottom: 22px;
  list-style: disc;
}
/* The template paints a tick-mark on every <li>; a privacy policy's
   "we may disclose to..." lists must not read as a benefits list. */
.legal-content li {
  background-image: none;
  padding-left: 0;
  margin-bottom: 8px;
}
.legal-content a {
  color: #d6083a;
  text-decoration: underline;
}
.legal-updated {
  opacity: 0.65;
  font-size: 0.95rem;
  margin-bottom: 34px;
}
.footer-legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Visible keyboard focus — the export had none. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #d6083a;
  outline-offset: 3px;
}

/* Respect reduced-motion: the page relies heavily on scroll reveals that start at
   opacity 0, which leaves content invisible for anyone who suppresses animation. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-w-id],
  .hero-button-wrap,
  .navbar-color-box {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Form result states — the export left these as unstyled grey boxes. */
.w-form-done,
.w-form-fail {
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 1rem;
  line-height: 1.5;
}
.w-form-done {
  background: #e9f7ef;
  border: 1px solid #b7e2c8;
  color: #14683a;
}
.w-form-fail {
  background: #fdecec;
  border: 1px solid #f5c2c2;
  color: #a02020;
}
.w-form-done:focus {
  outline: none;
}
