:root {
  --ps-navy: #062f63;
  --ps-navy-dark: #041f43;
  --ps-blue: #0d68d8;
  --ps-blue-bright: #147af3;
  --ps-orange: #ef6a3a;
  --ps-ink: #092443;
  --ps-muted: #5f7390;
  --ps-line: #dce7f3;
  --ps-soft: #f4f8fc;
  --ps-white: #ffffff;
  --ps-shadow: 0 18px 55px rgba(6, 47, 99, 0.14);
  --ps-header-height: 76px;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 142px;
}

body.ps-page {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: clip;
}

body.ps-nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.ps-nav-open::before {
  position: fixed;
  z-index: 12950;
  inset: var(--ps-header-height) 0 0;
  background: rgba(4, 31, 67, 0.46);
  backdrop-filter: blur(3px);
  content: "";
}

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

.ps-skip-link {
  position: fixed;
  z-index: 20000;
  top: 10px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 10px;
  color: var(--ps-white);
  background: var(--ps-navy);
  font: 700 14px/1.2 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.ps-skip-link:focus {
  transform: translateY(0);
}

.ps-page main [id] {
  scroll-margin-top: 142px;
}

.ps-toast {
  position: fixed;
  z-index: 9999;
  right: 22px;
  bottom: 22px;
  width: min(390px, calc(100vw - 32px));
  padding: 14px 18px;
  border: 1px solid rgba(29, 154, 103, 0.24);
  border-radius: 14px;
  color: #0d6245;
  background: #edfbf5;
  box-shadow: 0 16px 45px rgba(6, 47, 99, 0.18);
  font: 700 14px/1.45 Inter, ui-sans-serif, system-ui, sans-serif;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: 180ms ease;
}

.ps-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ps-toast.is-error {
  color: #9c3423;
  border-color: rgba(211, 74, 49, 0.23);
  background: #fff2ee;
}

form[data-enquiry-form] .ps-form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

form[data-enquiry-form] .ps-turnstile-slot {
  min-height: 65px;
  margin-block: 12px 8px;
  overflow: hidden;
}

form[data-enquiry-form] .ps-form-message {
  display: none;
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  color: #0d6245;
  background: #edfbf5;
  font: 700 13px/1.45 Inter, ui-sans-serif, system-ui, sans-serif;
}

form[data-enquiry-form] .ps-form-message.is-visible {
  display: block;
}

form[data-enquiry-form] .ps-form-message.is-error {
  color: #9c3423;
  background: #fff2ee;
}

form[data-enquiry-form] [type="submit"]:disabled {
  cursor: wait;
  opacity: 0.72;
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 128px;
  }

  .ps-page main [id] {
    scroll-margin-top: 128px;
  }

  body.ps-has-mobile-actions {
    padding-bottom: 68px;
  }

  .ps-toast {
    right: 16px;
    bottom: 82px;
  }

  form[data-enquiry-form] .ps-turnstile-slot {
    transform-origin: left top;
  }
}

@media (max-width: 370px) {
  form[data-enquiry-form] .ps-turnstile-slot {
    width: 304px;
    transform: scale(0.92);
    margin-bottom: 2px;
  }
}

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

  .ps-skip-link,
  .ps-toast {
    transition: none;
  }
}
