html,
body {
  min-height: 100%;
}

.opv-body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #ffffff;
  background-color: #010229;
  background-image: linear-gradient(180deg, rgba(1, 2, 41, 0.35) 0%, rgba(3, 3, 5, 0.55) 100%), url("../img/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (max-width: 767.98px) {
  .opv-body {
    background-attachment: scroll;
  }
}
.opv-header {
  position: relative;
  padding: 28px 22px 0;
  z-index: 1040;
}

.opv-hamburger {
  width: 46px;
  height: 34px;
  padding: 0;
  background: transparent;
  border: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.opv-hamburger:hover {
  opacity: 0.82;
}
.opv-hamburger:focus-visible {
  outline: 2px solid #E0BF78;
  outline-offset: 4px;
  border-radius: 2px;
}
.opv-hamburger span {
  display: block;
  width: 100%;
  height: 5px;
  background: #D4B266;
  border-radius: 1px;
}

.opv-offcanvas {
  background: linear-gradient(180deg, #0B0E3D 0%, #060826 100%);
  color: #ffffff;
  border-left: 1px solid rgba(212, 178, 102, 0.25);
}
.opv-offcanvas .offcanvas-title {
  color: #D4B266;
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  letter-spacing: 0.08em;
}

.opv-nav .nav-link {
  color: #ffffff;
  padding: 0.75rem 0;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.15s ease;
}
.opv-nav .nav-link:hover, .opv-nav .nav-link:focus {
  color: #E0BF78;
}

.opv-main {
  flex: 1 0 auto;
  padding-bottom: 48px;
}

.opv-hero {
  padding: clamp(16px, 4vw, 40px) 16px clamp(24px, 4vw, 48px);
}
.opv-hero__logo {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.45));
}

.opv-brands {
  padding: clamp(8px, 2vw, 24px) 0 clamp(32px, 5vw, 56px);
}

.opv-brand {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.opv-brand:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}
.opv-brand:focus-visible {
  outline: 2px solid #E0BF78;
  outline-offset: 6px;
  border-radius: 4px;
}
.opv-brand__logo {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.opv-brand__logo--tall {
  max-height: 160px;
}
.opv-brand__logo--wide {
  max-height: 95px;
}

.opv-contact {
  padding: clamp(16px, 3vw, 32px) 16px clamp(40px, 6vw, 72px);
}
.opv-contact__title {
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  color: #E0BF78;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  text-align: center;
  margin: 0 auto clamp(20px, 2.5vw, 32px);
}

.opv-form {
  max-width: 620px;
}
.opv-form__field {
  background-color: #ffffff;
  color: #1f1f1f;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.4;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.opv-form__field::placeholder {
  color: #B5B5B5;
  opacity: 1;
}
.opv-form__field:focus {
  background-color: #ffffff;
  color: #1f1f1f;
  border-color: #E0BF78;
  box-shadow: 0 0 0 0.2rem rgba(224, 191, 120, 0.25), 0 2px 10px rgba(0, 0, 0, 0.25);
  outline: 0;
}
.opv-form__field--area {
  min-height: 128px;
  resize: vertical;
}
.opv-form .invalid-feedback {
  color: #ff9aa2;
  font-size: 0.85rem;
}
.opv-form__success {
  color: #E0BF78;
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  letter-spacing: 0.08em;
}

.was-validated .opv-form__field:valid,
.opv-form__field.is-valid {
  border-color: rgba(212, 178, 102, 0.6);
}

.opv-btn-submit {
  background: #E0BF78;
  color: #060826;
  border: 0;
  border-radius: 3px;
  padding: 12px 42px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}
.opv-btn-submit:hover {
  background: #D4B266;
}
.opv-btn-submit:active {
  transform: translateY(1px);
}
.opv-btn-submit:focus-visible {
  outline: 2px solid #E0BF78;
  outline-offset: 3px;
}

.opv-footer {
  flex-shrink: 0;
  padding: 18px 16px 28px;
  color: #CFCFCF;
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

@media (max-width: 991.98px) {
  .opv-hero__logo {
    max-width: 320px;
  }
  .opv-brand__logo--tall {
    max-height: 120px;
  }
  .opv-brand__logo--wide {
    max-height: 72px;
  }
}
@media (max-width: 767.98px) {
  .opv-header {
    padding: 18px 14px 0;
  }
  .opv-hamburger {
    width: 40px;
    height: 30px;
  }
  .opv-hamburger span {
    height: 4px;
  }
  .opv-hero {
    padding-top: 8px;
  }
  .opv-hero__logo {
    max-width: 260px;
  }
  .opv-brand__logo--tall {
    max-height: 110px;
  }
  .opv-brand__logo--wide {
    max-height: 64px;
  }
  .opv-contact__title {
    letter-spacing: 0.14em;
  }
}
@media (max-width: 575.98px) {
  .opv-hero__logo {
    max-width: 220px;
  }
  .opv-brand__logo {
    width: 170px !important;
  }
  .opv-brand__logo--tall {
    max-height: 96px;
  }
  .opv-brand__logo--wide {
    max-height: 56px;
  }
  .opv-form__field {
    padding: 12px 14px;
    font-size: 14px;
  }
  .opv-btn-submit {
    padding: 11px 34px;
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/*# sourceMappingURL=styles.css.map */
