/*
Theme Name: BVP Group
Theme URI: https://green-rook-301781.hostingersite.com/
Author: BVP Group
Description: Lightweight custom theme for BVP Group. Provides a global header, overlay menu, footer, Polylang menu locations, raw Custom HTML canvases and automatic Blog/Client archives.
Version: 1.8.4
Requires at least: 6.2
Requires PHP: 7.4
Text Domain: bvp-group
*/

:root {
  --bvp-ink: #202020;
  --bvp-charcoal: #252525;
  --bvp-forest: #10341e;
  --bvp-green: #477a4d;
  --bvp-greige: #c7afa3;
  --bvp-paper: #ffffff;
  --bvp-muted: #737373;
  --bvp-line: rgba(255, 255, 255, 0.35);
  --bvp-shell: 1430px;
}


html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--bvp-ink);
  background: var(--bvp-paper);
}

body.bvp-menu-open {
  overflow: hidden;
}

.bvp-site-header,
.bvp-site-header *,
.bvp-menu-overlay,
.bvp-menu-overlay *,
.bvp-site-footer,
.bvp-site-footer *,
.bvp-archive-main,
.bvp-archive-main *,
.bvp-generic-archive,
.bvp-generic-archive *,
.bvp-error-page,
.bvp-error-page * {
  box-sizing: border-box;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 16px;
  color: #111;
  background: #fff;
  white-space: normal;
}

.bvp-content-canvas {
  min-height: 1px;
  outline: 0;
}

/* Global transparent header */
.bvp-site-header {
  position: absolute;
  z-index: 900;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: clamp(30px, 2.4vw, 46px) clamp(36px, 2.4vw, 48px);
  pointer-events: none;
}

.admin-bar .bvp-site-header {
  top: 32px;
}

.bvp-site-brand,
.bvp-site-tools {
  pointer-events: auto;
}

.bvp-site-brand {
  width: clamp(230px, 16vw, 305px);
}

.bvp-site-brand .custom-logo-link,
.bvp-site-logo-link,
.bvp-footer-brand .custom-logo-link {
  display: block;
}

.bvp-site-brand img,
.bvp-site-logo-image,
.bvp-footer-brand img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.bvp-site-tools {
  display: grid;
  justify-items: end;
  gap: 16px;
  padding-top: 17px;
}

.bvp-language-menu:empty {
  display: none;
}

.bvp-language-list {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bvp-language-list li {
  margin: 0;
}

.bvp-language-list a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 2px 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
}

.bvp-language-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 2px 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1;
}

.bvp-language-list .current-lang a,
.bvp-language-list .current-menu-item a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bvp-language-list .current-lang span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bvp-language-list img {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.bvp-menu-toggle {
  display: grid;
  gap: 7px;
  width: 104px;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.bvp-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: currentColor;
}

.bvp-menu-toggle:focus-visible,
.bvp-menu-close:focus-visible,
.bvp-site-header a:focus-visible,
.bvp-site-footer a:focus-visible,
.bvp-menu-overlay a:focus-visible,
.bvp-client-filters a:focus-visible,
.bvp-read-more:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

/* Full-screen menu */
.bvp-menu-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding: 10px clamp(18px, 3vw, 58px);
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  background: rgba(10, 16, 18, 0.2);
  backdrop-filter: blur(7px);
  transition: visibility 0s linear 240ms, opacity 240ms ease;
}

.admin-bar .bvp-menu-overlay {
  padding-top: 42px;
}

.bvp-menu-overlay[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.bvp-menu-panel {
  position: relative;
  width: min(1450px, calc(100vw - 36px));
  min-height: 374px;
  margin: 0 auto;
  padding: 56px 140px 20px;
  border-radius: 14px;
  background: rgba(24, 32, 35, 0.88);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-12px);
  transition: transform 240ms ease;
}

.bvp-menu-overlay[aria-hidden="false"] .bvp-menu-panel {
  transform: translateY(0);
}

.bvp-menu-close {
  position: absolute;
  top: 27px;
  right: 31px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.bvp-menu-close span {
  position: absolute;
  top: 16px;
  left: 4px;
  width: 27px;
  height: 3px;
  background: currentColor;
}

.bvp-menu-close span:first-child {
  transform: rotate(45deg);
}

.bvp-menu-close span:last-child {
  transform: rotate(-45deg);
}

.bvp-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(40px, 7vw, 120px);
}

.bvp-menu-column h2,
.bvp-footer-column h2 {
  margin: 0 0 18px;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.bvp-nav-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bvp-nav-list li {
  margin: 0;
  padding: 0;
}

.bvp-nav-list a {
  color: inherit;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.42;
  text-decoration: none;
  transition: color 160ms ease;
}

.bvp-nav-list a:hover {
  color: #fff;
}

.bvp-menu-form {
  margin-top: 42px;
  color: #fff;
}

.bvp-menu-form form,
.bvp-menu-form .elementor-form-fields-wrapper,
.bvp-menu-form .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(260px, 1fr);
  align-items: end;
  gap: 30px 60px;
}

.bvp-menu-form p {
  display: contents;
}

.bvp-menu-form label,
.bvp-menu-form .elementor-field-group {
  min-width: 0;
}

.bvp-menu-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.bvp-menu-form select,
.bvp-menu-form textarea {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 0;
  padding: 5px 15px;
  background: transparent;
  color: #fff;
  font: 14px Arial, Helvetica, sans-serif;
  box-shadow: none;
}

.bvp-menu-form input::placeholder,
.bvp-menu-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
}

.bvp-menu-form select option {
  color: #222;
}

.bvp-menu-form button,
.bvp-menu-form input[type="submit"] {
  width: 100%;
  min-height: 64px;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 12px 22px;
  background: transparent;
  color: #fff;
  font: 700 14px Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}

.bvp-menu-form .bvp-popup-field {
  display: block;
  width: 100%;
  margin: 0;
}

.bvp-menu-form .bvp-popup-submit {
  display: flex;
  align-items: end;
  margin: 0;
}

.bvp-menu-form .wpcf7-response-output {
  grid-column: 1 / -1;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
}

.bvp-menu-form .wpcf7-spinner {
  position: absolute;
}

/* Archive heroes */
.bvp-archive-main {
  background: #fff;
  outline: 0;
}

.bvp-archive-hero {
  position: relative;
  min-height: clamp(560px, 36vw, 690px);
  overflow: hidden;
  isolation: isolate;
  background-color: #151716;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.24) 48%, rgba(0, 0, 0, 0.56)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.5)),
    var(--bvp-archive-hero, none);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.bvp-archive-hero--knowledge {
  display: grid;
  place-items: center;
}

.bvp-archive-hero-content {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 40px));
  padding-top: 115px;
  text-align: center;
}

.bvp-archive-hero-content h1,
.bvp-clients-hero-content h1 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 5vw, 96px);
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
}

.bvp-archive-hero-content p {
  margin: 35px auto 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(16px, 1.12vw, 21px);
  line-height: 1.4;
}

.bvp-archive-hero--clients {
  display: flex;
  align-items: flex-end;
}

.bvp-clients-hero-content {
  position: relative;
  z-index: 1;
  width: min(1568px, calc(100% - 80px));
  margin: 0 auto;
  padding: 0 0 clamp(116px, 9.4vw, 180px);
}

.bvp-clients-hero-content h1 {
  font-size: clamp(70px, 5vw, 102px);
}

/* Knowledge cards */
.bvp-knowledge-listing {
  padding: clamp(84px, 6.5vw, 125px) 28px clamp(68px, 5vw, 100px);
  background: #fff;
}

.bvp-archive-shell,
.bvp-generic-shell {
  width: min(var(--bvp-shell), 100%);
  margin: 0 auto;
}

.bvp-knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.bvp-knowledge-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 310px;
  padding: 24px 25px 25px;
  border: 1px solid #e1e1e1;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.17);
}

.bvp-card-label {
  align-self: flex-start;
  min-width: 92px;
  margin-bottom: 19px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #e7ebea;
  color: #062f1b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.15;
  text-align: center;
}

.bvp-knowledge-card h2 {
  margin: 0 0 28px;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.bvp-knowledge-card h2 a {
  color: inherit;
  text-decoration: none;
}

.bvp-knowledge-card p {
  margin: 0 0 18px;
  color: #737373;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.42;
}

.bvp-card-divider {
  height: 1px;
  margin-top: auto;
  margin-bottom: 17px;
  background: #e2e2e2;
}

.bvp-read-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  color: #053d23;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
}

.bvp-read-more svg {
  width: 7px;
  height: 12px;
  transition: transform 160ms ease;
}

.bvp-read-more:hover svg {
  transform: translateX(3px);
}

/* Client archive cards */
.bvp-clients-listing {
  padding: clamp(70px, 5vw, 100px) 28px clamp(110px, 8vw, 160px);
  background: #fff;
}

.bvp-clients-shell {
  width: min(1744px, 100%);
  margin: 0 auto;
}

.bvp-client-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: min(1588px, 100%);
  margin: 0 auto 18px;
}

.bvp-client-filters a {
  min-width: 44px;
  padding: 5px 9px;
  border: 1px solid #77808a;
  color: #69727d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.bvp-client-filters a:hover,
.bvp-client-filters a.is-active {
  border-color: #10341e;
  background: #10341e;
  color: #fff;
}

.bvp-clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 2.7vw, 52px);
  width: min(1588px, 100%);
  margin: 0 auto;
}

.bvp-client-card {
  min-width: 0;
}

.bvp-client-card-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.25 / 1;
  background: #8f8177;
  color: #fff;
  text-decoration: none;
}

.bvp-client-card-media,
.bvp-client-card-shade {
  position: absolute;
  inset: 0;
}

.bvp-client-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.bvp-client-card-shade {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 25%, rgba(0, 0, 0, 0.74) 100%);
}

.bvp-client-card-content {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 76px;
  left: 30px;
  color: #fff;
}

.bvp-client-card-content p {
  max-width: 100%;
  margin: 0 0 11px;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(12px, 0.78vw, 15px);
  line-height: 1.45;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65);
}

.bvp-client-card-content h2 {
  margin: 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 1.7vw, 34px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.bvp-client-card-link:hover .bvp-client-card-media img {
  transform: scale(1.035);
}

/* Pagination */
.navigation.pagination {
  margin: 31px 0 0;
}

.navigation.pagination .nav-links,
.navigation.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.navigation.pagination ul.page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navigation.pagination li {
  margin: 0;
}

.navigation.pagination a,
.navigation.pagination span {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
}

.navigation.pagination .current {
  color: #10341e;
  font-weight: 700;
}

.navigation.pagination .prev,
.navigation.pagination .next {
  color: #10341e;
}

/* Generic WordPress states */
.bvp-generic-archive {
  min-height: 70vh;
  padding: 220px 28px 100px;
  background: #f7f7f5;
}

.bvp-generic-heading {
  margin-bottom: 55px;
}

.bvp-generic-heading h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 92px);
  line-height: 1;
}

.bvp-archive-description {
  max-width: 760px;
  margin-top: 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

.bvp-empty-state {
  padding: 60px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  text-align: center;
}

.bvp-error-page {
  display: grid;
  min-height: 75vh;
  place-items: center;
  padding: 180px 24px 100px;
  background: #c7afa3;
  text-align: center;
}

.bvp-error-code {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(100px, 18vw, 260px);
  line-height: 0.8;
}

.bvp-error-page h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 56px);
}

.bvp-error-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 10px 25px;
  border: 1px solid currentColor;
  color: #202020;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
}

/* Footer */
.bvp-site-footer {
  padding: 68px clamp(28px, 6vw, 120px) 28px;
  background: var(--bvp-charcoal);
  color: #fff;
}

.bvp-footer-inner {
  width: min(1430px, 100%);
  margin: 0 auto;
}

.bvp-footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) repeat(4, minmax(155px, 1fr));
  gap: clamp(42px, 4.8vw, 88px);
  align-items: start;
}

.bvp-footer-brand {
  width: min(235px, 100%);
}

.bvp-footer-column h2 {
  margin-bottom: 13px;
  font-size: 16px;
}

.bvp-footer-column .bvp-nav-list {
  gap: 11px;
}

.bvp-footer-column .bvp-nav-list a {
  color: #fff;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  line-height: 1.35;
}

.bvp-language-menu--footer {
  margin-top: 16px;
}

.bvp-language-menu--footer .bvp-language-list {
  gap: 8px;
}

.bvp-language-menu--footer .bvp-language-list a {
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
}

.bvp-footer-divider {
  height: 1px;
  margin: 50px 0 31px;
  background: rgba(255, 255, 255, 0.28);
}

.bvp-footer-copy {
  margin: 0;
  color: #b8b6bd;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 1120px) {
  .bvp-menu-panel {
    padding: 60px 60px 34px;
  }

  .bvp-menu-grid {
    gap: 42px;
  }

  .bvp-menu-form form,
  .bvp-menu-form .elementor-form-fields-wrapper,
  .bvp-menu-form .wpcf7-form {
    gap: 28px;
  }

  .bvp-footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bvp-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .bvp-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bvp-menu-form form,
  .bvp-menu-form .elementor-form-fields-wrapper,
  .bvp-menu-form .wpcf7-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bvp-knowledge-grid,
  .bvp-clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bvp-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  .admin-bar .bvp-site-header {
    top: 46px;
  }

  .admin-bar .bvp-menu-overlay {
    padding-top: 56px;
  }
}

@media (max-width: 620px) {
  .bvp-site-header {
    padding: 18px;
  }

  .bvp-site-brand {
    width: clamp(145px, 43vw, 190px);
  }

  .bvp-site-tools {
    gap: 8px;
    padding-top: 4px;
  }

  .bvp-language-list {
    gap: 10px;
  }

  .bvp-language-list a {
    font-size: 12px;
  }

  .bvp-menu-toggle {
    width: 58px;
    gap: 5px;
  }

  .bvp-menu-toggle span {
    height: 2px;
  }

  .bvp-menu-overlay {
    padding: 0;
  }

  .admin-bar .bvp-menu-overlay {
    padding-top: 46px;
  }

  .bvp-menu-panel {
    width: 100%;
    min-height: 100vh;
    padding: 70px 24px 45px;
    border-radius: 0;
  }

  .admin-bar .bvp-menu-panel {
    min-height: calc(100vh - 46px);
  }

  .bvp-menu-close {
    top: 20px;
    right: 20px;
  }

  .bvp-menu-grid,
  .bvp-menu-form form,
  .bvp-menu-form .elementor-form-fields-wrapper,
  .bvp-menu-form .wpcf7-form,
  .bvp-knowledge-grid,
  .bvp-clients-grid,
  .bvp-footer-grid {
    grid-template-columns: 1fr;
  }

  .bvp-menu-grid {
    gap: 34px;
  }

  .bvp-menu-form {
    margin-top: 36px;
  }

  .bvp-menu-form form,
  .bvp-menu-form .elementor-form-fields-wrapper,
  .bvp-menu-form .wpcf7-form {
    gap: 18px;
  }

  .bvp-archive-hero {
    min-height: 540px;
  }

  .bvp-archive-hero-content {
    padding-top: 100px;
  }

  .bvp-archive-hero-content h1,
  .bvp-clients-hero-content h1 {
    font-size: clamp(42px, 13vw, 62px);
    line-height: 0.98;
  }

  .bvp-archive-hero-content p {
    margin-top: 24px;
    font-size: 15px;
  }

  .bvp-clients-hero-content {
    width: calc(100% - 36px);
    padding-bottom: 90px;
  }

  .bvp-knowledge-listing {
    padding: 58px 18px 68px;
  }

  .bvp-knowledge-grid,
  .bvp-clients-grid {
    gap: 22px;
  }

  .bvp-knowledge-card {
    min-height: 285px;
    padding: 22px 23px;
  }

  .bvp-knowledge-card h2 {
    margin-bottom: 20px;
    font-size: 19px;
  }

  .bvp-knowledge-card p {
    font-size: 16px;
  }

  .bvp-clients-listing {
    padding: 20px 18px 70px;
  }

  .bvp-client-card-content {
    right: 22px;
    bottom: 50px;
    left: 22px;
  }

  .bvp-client-card-content p {
    font-size: 12px;
  }

  .bvp-client-card-content h2 {
    font-size: 25px;
  }

  .bvp-generic-archive {
    padding: 150px 18px 70px;
  }

  .bvp-site-footer {
    padding: 50px 22px 28px;
  }

  .bvp-footer-grid {
    gap: 34px;
  }

  .bvp-footer-brand {
    width: 210px;
  }

  .bvp-footer-divider {
    margin-top: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .bvp-menu-overlay,
  .bvp-menu-panel,
  .bvp-client-card-media img,
  .bvp-read-more svg {
    transition: none;
  }
}

/* Image URLs live in page HTML; CSS controls their presentation only. */
.bvp-hero > .bvp-section-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.bvp-product-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.bvp-product-section > .bvp-section-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.bvp-product-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.bvp-service-all-clients-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.bvp-service-all-clients-card > .bvp-section-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.bvp-service-all-clients-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(32, 32, 32, 0.54);
  pointer-events: none;
}

.bvp-service-all-clients-card .bvp-service-all-clients-button {
  z-index: 1;
}

/* Compact CF7 price form inside product and solution hero panels. */
.bvp-hero-panel .wpcf7,
.bvp-hero-panel .wpcf7-form {
  width: 100%;
}

.bvp-product-cf7 {
  display: grid;
  gap: 10px;
  width: 100%;
  font-family: Georgia, "Times New Roman", serif;
}

.bvp-product-cf7 br {
  display: none;
}

.bvp-product-cf7__field {
  display: grid;
  gap: 5px;
  margin: 0;
  color: #171717;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.bvp-product-cf7__field .wpcf7-form-control-wrap {
  display: block;
}

.bvp-product-cf7__field input[type="email"],
.bvp-product-cf7__field input[type="tel"],
.bvp-product-cf7__field input[type="text"] {
  display: block;
  width: 100%;
  height: 41px;
  margin: 0;
  border: 1px solid #bcc6d2;
  border-radius: 3px;
  padding: 7px 10px;
  outline: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #171717;
  font: 16px/1.2 Arial, Helvetica, sans-serif;
  box-shadow: none;
}

.bvp-product-cf7__field input:focus {
  border-color: #303030;
  box-shadow: 0 0 0 1px #303030;
}

.bvp-product-cf7__consent {
  color: #171717;
  font: 15px/1.35 Arial, Helvetica, sans-serif;
}

.bvp-product-cf7__consent .wpcf7-list-item {
  margin: 0;
}

.bvp-product-cf7__consent .wpcf7-list-item label {
  display: inline-flex;
  align-items: flex-start;
  gap: 7px;
}

.bvp-product-cf7__consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin: 2px 0 0;
  accent-color: #10341e;
}

.bvp-product-cf7__consent a {
  color: inherit;
  text-decoration: none;
}

.bvp-product-cf7__consent a:hover,
.bvp-product-cf7__consent a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bvp-product-cf7__submit input[type="submit"] {
  min-height: 40px;
  margin: 0;
  border: 1px solid #171717;
  border-radius: 0;
  padding: 9px 17px;
  background: rgba(255, 255, 255, 0.68);
  color: #171717;
  font: 400 16px/1.1 Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}

.bvp-product-cf7__submit input[type="submit"]:hover,
.bvp-product-cf7__submit input[type="submit"]:focus-visible {
  background: #171717;
  color: #fff;
}

.bvp-product-cf7 .wpcf7-not-valid-tip {
  margin-top: 5px;
  font: 12px/1.25 Arial, Helvetica, sans-serif;
}

.bvp-hero-panel .wpcf7-response-output {
  margin: 16px 0 0;
  font: 13px/1.35 Arial, Helvetica, sans-serif;
}

.bvp-hero-panel .wpcf7-spinner {
  margin: 0 0 0 8px;
}

/* Shared page tail: CF7 offer form and social-media block. */
.bvp-global-contact,
.bvp-global-contact *,
.bvp-global-social,
.bvp-global-social * {
  box-sizing: border-box;
}

.bvp-global-contact {
  padding: clamp(58px, 6vw, 100px) clamp(26px, 4.2vw, 80px) clamp(68px, 7vw, 112px);
  background: #0b3821;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.bvp-global-contact__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.55fr);
  align-items: end;
  gap: clamp(64px, 6vw, 120px);
  margin: 0 0 clamp(48px, 4vw, 72px);
}

.bvp-global-contact__intro h2 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 4.15vw, 78px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.bvp-global-contact__intro p {
  max-width: 430px;
  margin: 0 0 8px;
  font-size: clamp(13px, 0.85vw, 16px);
  line-height: 1.25;
}

.bvp-global-contact__form,
.bvp-global-contact__form .wpcf7 {
  width: 100%;
}

.bvp-cf7-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 22px;
}

.bvp-cf7-field,
.bvp-cf7-choice {
  display: grid;
  min-width: 0;
  gap: 9px;
  margin: 0;
  border: 0;
  padding: 0;
  color: #fff;
  font: 12px/1.2 Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.bvp-cf7-field--wide,
.bvp-cf7-subtitle {
  grid-column: 1 / -1;
}

.bvp-cf7-field .wpcf7-form-control-wrap {
  display: block;
}

.bvp-cf7-field input[type="text"],
.bvp-cf7-field input[type="number"],
.bvp-cf7-field input[type="tel"],
.bvp-cf7-field input[type="email"],
.bvp-cf7-field textarea {
  display: block;
  width: 100%;
  min-height: 34px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 0;
  padding: 4px 0 7px;
  outline: 0;
  background: transparent;
  color: #fff;
  font: 13px/1.25 Arial, Helvetica, sans-serif;
  box-shadow: none;
}

.bvp-cf7-field textarea {
  min-height: 54px;
  resize: vertical;
}

.bvp-cf7-field input:focus,
.bvp-cf7-field textarea:focus {
  border-bottom-color: #fff;
  box-shadow: 0 1px 0 #fff;
}

.bvp-cf7-field ::placeholder {
  color: rgba(255, 255, 255, 0.42);
  opacity: 1;
}

.bvp-cf7-choice legend {
  margin-bottom: 8px;
  padding: 0;
}

.bvp-cf7-choice .wpcf7-list-item {
  margin: 0 12px 5px 0;
}

.bvp-cf7-choice .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: none;
}

.bvp-cf7-choice input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: #fff;
}

.bvp-cf7-subtitle {
  margin: 0;
  padding: 0 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  color: #fff;
  font: 400 clamp(17px, 1.2vw, 22px)/1 Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.bvp-cf7-submit {
  display: flex;
  align-items: end;
  width: 100%;
}

.bvp-cf7-submit p {
  flex: 1 1 100%;
  width: 100%;
  margin: 0;
}

.bvp-cf7-submit input[type="submit"] {
  width: 100%;
  min-height: 42px;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 8px 14px;
  background: #fff;
  color: #111;
  font: 700 11px/1 Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}

.bvp-cf7-submit input[type="submit"]:hover,
.bvp-cf7-submit input[type="submit"]:focus-visible {
  background: transparent;
  color: #fff;
}

.bvp-global-contact .wpcf7-response-output {
  margin: 24px 0 0;
  border-color: #fff;
}

.bvp-component-notice {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.bvp-global-social {
  min-height: clamp(500px, 48vw, 770px);
  padding: clamp(72px, 7vw, 120px) 24px 42px;
  background: #fff;
  color: #111;
  text-align: center;
}

.bvp-global-social__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.bvp-global-social h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 4.5vw, 78px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.bvp-global-social p {
  margin: 18px auto 16px;
  font: 14px/1.45 "Courier New", Courier, monospace;
}

.bvp-global-social__links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.bvp-global-social__links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #ededed;
  color: #111;
}

.bvp-global-social__links svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.bvp-global-social__links svg path,
.bvp-global-social__links svg .is-fill {
  fill: currentColor;
  stroke: none;
}

.bvp-global-social__image {
  display: block;
  width: min(640px, 78vw);
  max-height: 430px;
  margin: clamp(48px, 6vw, 86px) auto 0;
  object-fit: contain;
}

@media (max-width: 900px) {
  .bvp-global-contact__intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .bvp-global-contact__intro p {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .bvp-language-list span {
    font-size: 12px;
  }

  .bvp-global-contact {
    padding: 52px 18px 64px;
  }

  .bvp-global-contact__intro {
    gap: 22px;
    margin-bottom: 42px;
  }

  .bvp-global-contact__intro h2 {
    max-width: 100%;
    font-size: clamp(28px, 9vw, 36px);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .bvp-cf7-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .bvp-cf7-field--wide,
  .bvp-cf7-subtitle {
    grid-column: auto;
  }

  .bvp-global-social {
    min-height: 440px;
    padding-top: 70px;
  }

  .bvp-global-social h2 {
    max-width: 100%;
    font-size: clamp(28px, 9vw, 36px);
    line-height: 0.95;
    overflow-wrap: anywhere;
  }
}
