/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 05 2026 | 00:30:40 */
/* ================================
   Ventari Global 404 Page
================================ */

/* Fix WordPress theme wrapper whitespace on the 404 page */
body.error404,
body.error404 #page,
body.error404 .site,
body.error404 .site-content,
body.error404 .wp-site-blocks,
body.error404 main,
body.error404 .site-main,
body.error404 .entry-content,
body.error404 .wp-block-post-content {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
  background: #eef5f9 !important;
}

body.error404 {
  overflow-x: hidden !important;
}

/* Hide default page spacing some block themes inject */
body.error404 .wp-site-blocks > * {
  margin-block-start: 0 !important;
}

.ventari-404,
.ventari-404 * {
  box-sizing: border-box;
}

.ventari-404 {
  position: relative;
  isolation: isolate;
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background:
    radial-gradient(circle at 12% 18%, rgba(190, 139, 54, 0.22) 0%, rgba(190, 139, 54, 0) 28%),
    radial-gradient(circle at 82% 16%, rgba(96, 145, 178, 0.42) 0%, rgba(96, 145, 178, 0) 34%),
    radial-gradient(circle at 72% 78%, rgba(7, 26, 47, 0.16) 0%, rgba(7, 26, 47, 0) 36%),
    radial-gradient(circle at 24% 82%, rgba(212, 226, 236, 0.95) 0%, rgba(212, 226, 236, 0) 38%),
    linear-gradient(135deg, #ffffff 0%, #eef5f9 32%, #dfeaf1 64%, #f8f7f3 100%);

  color: #071a2f;
  font-family: "Montserrat", Arial, sans-serif;
}

/* Premium frosted veil */
.ventari-404::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.2) 48%, rgba(232, 241, 247, 0.42)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(7, 26, 47, 0.035));
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  pointer-events: none;
}

/* Premium platinum grid / glass texture */
.ventari-404::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(7, 26, 47, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 47, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.58), transparent 56%);
  background-size: 44px 44px, 44px 44px, auto;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.58), transparent 76%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.58), transparent 76%);
  opacity: 0.7;
}

.ventari-404__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 620px);
  margin: 0 auto;
  text-align: center;
  perspective: 1100px;
}

.ventari-404__logo-link {
  display: inline-block;
  margin: 0 auto 1.65rem;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  perspective: 1100px;
}

.ventari-404__logo-link:focus-visible {
  outline: 3px solid rgba(190, 139, 54, 0.85);
  outline-offset: 7px;
}

.ventari-404__logo-card {
  position: relative;
  width: clamp(220px, 28vw, 330px);
  min-height: clamp(112px, 15vw, 145px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.35rem, 2.8vw, 1.9rem);
  border-radius: 0;
  overflow: hidden;

  background:
    linear-gradient(145deg, rgba(7, 26, 47, 0.96), rgba(10, 36, 61, 0.9)),
    rgba(7, 26, 47, 0.92);

  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 26px 70px rgba(7, 26, 47, 0.22),
    0 10px 32px rgba(7, 26, 47, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);

  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  transform-style: preserve-3d;
  transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
  transition:
    transform 0.16s ease-out,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
  will-change: transform;
}

.ventari-404__logo-link:hover .ventari-404__logo-card {
  border-color: rgba(190, 139, 54, 0.55);
  background:
    linear-gradient(145deg, rgba(7, 26, 47, 1), rgba(12, 45, 76, 0.95)),
    rgba(7, 26, 47, 0.96);
  box-shadow:
    0 34px 92px rgba(7, 26, 47, 0.28),
    0 0 42px rgba(190, 139, 54, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

/* On click, unlift the logo */
.ventari-404__logo-link:active .ventari-404__logo-card {
  transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) scale(0.985) !important;
  border-color: rgba(255, 255, 255, 1);
  box-shadow:
    0 16px 42px rgba(7, 26, 47, 0.24),
    0 0 0 2px rgba(7, 26, 47, 0.18),
    0 0 0 6px rgba(255, 255, 255, 0.82),
    0 0 34px rgba(255, 255, 255, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.ventari-404__logo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 265px;
  height: auto;
  object-fit: contain;
  transform: translateZ(36px);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

.ventari-404__eyebrow {
  margin: 0 0 0.75rem;
  color: #D89B2B;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ventari-404__title {
  margin: 0 auto 0.9rem;
  max-width: 560px;
  color: #071a2f;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.85rem, 3.8vw, 3.15rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.ventari-404__copy {
  margin: 0 auto 1.45rem;
  max-width: 540px;
  color: rgba(7, 26, 47, 0.74);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.65;
  font-weight: 300;
}

.ventari-404__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.56rem 0.88rem;
  border-radius: 2px;
  background: #D89B2B;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  border: 1px solid rgba(190, 139, 54, 0.72);
  box-shadow: 0 12px 26px rgba(7, 26, 47, 0.16);
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.ventari-404__button:hover {
  transform: translateY(-2px);
  background: #071a2f;
  color: #ffffff;
  border-color: rgba(7, 26, 47, 0.95);
  box-shadow: 0 16px 34px rgba(7, 26, 47, 0.22);
}

/* On click, make button white with dark blue text + dark blue glow */
.ventari-404__button:active {
  transform: translateY(0);
  background: #ffffff;
  color: #071a2f;
	border: none;
  box-shadow:
    0 8px 18px rgba(7, 26, 47, 0.18),
    0 0 0 5px rgba(7, 26, 47, 0.28),
    0 0 34px rgba(7, 26, 47, 0.38);
}

.ventari-404__button:focus-visible {
  outline: 3px solid rgba(7, 26, 47, 0.55);
  outline-offset: 5px;
}

/* Tablet */
@media (max-width: 900px) {
  body.error404,
  body.error404 #page,
  body.error404 .site,
  body.error404 .site-content,
  body.error404 .wp-site-blocks,
  body.error404 main,
  body.error404 .site-main,
  body.error404 .entry-content,
  body.error404 .wp-block-post-content {
    margin: 0 !important;
    padding: 0 !important;
    background: #eef5f9 !important;
  }

  .ventari-404 {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    margin: 0 !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 !important;
  }

  .ventari-404__inner {
    width: min(100% - 2rem, 580px);
  }

  .ventari-404__logo-card {
    width: clamp(220px, 42vw, 300px);
    border-radius: 0;
  }

  .ventari-404__title {
    font-size: clamp(1.8rem, 5vw, 2.75rem);
  }
}

/* Mobile */
@media (max-width: 600px) {
  body.error404,
  body.error404 #page,
  body.error404 .site,
  body.error404 .site-content,
  body.error404 .wp-site-blocks,
  body.error404 main,
  body.error404 .site-main,
  body.error404 .entry-content,
  body.error404 .wp-block-post-content {
    margin: 0 !important;
    padding: 0 !important;
    background: #eef5f9 !important;
  }

  .ventari-404 {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    min-height: 100svh;
    margin: 0 !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 !important;
    align-items: center;
  }

  .ventari-404__inner {
    width: min(100% - 2rem, 380px);
  }

  .ventari-404__logo-link {
    margin-bottom: 1.45rem;
  }

  .ventari-404__logo-card {
    width: min(100%, 250px);
    min-height: 112px;
    padding: 1.25rem;
    border-radius: 0;
  }

  .ventari-404__logo {
    max-width: 210px;
    transform: translateZ(24px);
  }

  .ventari-404__eyebrow {
    font-size: 0.66rem;
  }

  .ventari-404__title {
    max-width: 340px;
    font-size: clamp(1.7rem, 8vw, 2.25rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
  }

  .ventari-404__copy {
    max-width: 330px;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .ventari-404__button {
    min-height: 34px;
    padding: 0.52rem 0.78rem;
    border-radius: 2px;
    font-size: 0.64rem;
    font-weight: 700;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ventari-404__logo-card,
  .ventari-404__button {
    transition: none;
  }

  .ventari-404__logo-card {
    transform: none !important;
  }
}