@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wp-block {
  width: 100%;
  max-width: 95%;
}

section {
  padding: 75px 20px;
}

section[class].no-padding-top {
  padding-top: 0;
  padding-block-start: 0;
}

img, svg {
  display: flex;
  max-width: 100%;
  height: auto;
}

section[class].no-padding-bottom {
  padding-bottom: 0;
  padding-block-end: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
}

.bb-btn {
  padding: 8px 20px;
  border: 1px solid #aaa;
  text-decoration: none;
  display: inline-block;
}
.bb-btn.bb-btn--primary {
  background-color: #aaa;
}
.bb-btn.bb-btn--primary:hover {
  background-color: transparent;
}
.bb-btn.bb-btn--secondary {
  background-color: transparent;
}
.bb-btn.bb-btn--secondary:hover {
  background-color: #aaa;
}
.bb-btn.bb-btn--accent {
  background-color: #eee;
}
.bb-btn.bb-btn--accent:hover {
  background-color: #ccc;
}

/* Header — wireframe basis */
.usp-bar .usps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.usp-bar .usp-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.usp-bar .usp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #ccc;
}
.usp-bar .usp-icon svg {
  width: 10px;
  height: 8px;
  fill: #fff;
}

/* Mobile toggle (hidden by default) */
.menu-toggle {
  display: none;
}

.site-footer .footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}
@media (max-width: 768px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.site-footer .footer-logo {
  text-decoration: none;
  color: inherit;
}
.site-footer .footer-logo img {
  max-width: 180px;
  height: auto;
}
.site-footer .footer-follow {
  margin: 15px 0 8px;
  font-size: 14px;
}
.site-footer .footer-social {
  display: flex;
  gap: 10px;
}
.site-footer .footer-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer .footer-social .social-icon svg {
  width: 20px;
  height: 20px;
}
.site-footer .footer-heading {
  margin: 0 0 12px;
  font-size: 16px;
}
.site-footer .footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-menu li + li {
  margin-top: 6px;
}
.site-footer .footer-menu a {
  text-decoration: none;
  color: inherit;
  font-size: 14px;
}
.site-footer .footer-menu a:hover {
  text-decoration: underline;
}
.site-footer .footer-contact {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
}
.site-footer .footer-contact a {
  color: inherit;
  text-decoration: none;
}
.site-footer .footer-contact a:hover {
  text-decoration: underline;
}
.site-footer .footer-bottom {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
}
.site-footer .footer-bottom p {
  margin: 0;
}
.site-footer .footer-logos {
  display: flex;
  align-items: center;
  gap: 15px;
}
.site-footer .footer-logos svg {
  fill: currentColor;
}