/* -----------------------------
   Cargo-ish Typography (your woff2)
   Put fonts in /fonts
------------------------------ */
@font-face {
  font-family: "Cargo Monument";
  src: url("../fonts/CargoMonumentGroteskPlusVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "Cargo Monument";
  src: url("../fonts/CargoMonumentGroteskItalicPlusVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
}

/* RESET */
* { box-sizing: border-box; }
html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
  cursor: crosshair;
  background: #ffffff;
}

/* SPLASH SCREEN */
.splash {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1000;
  overflow: hidden;
}

/* Left page */
.splash-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 0;
}
.splash-title {
  font-family: "Cargo Monument", "Cargo Diatype", sans-serif;
  font-size: 18px;
  font-weight: 450;
  color: #000;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.splash-email {
  font-family: "Cargo Monument", "Cargo Diatype", sans-serif;
  font-size: 12px;
  font-weight: 450;
  font-style: italic;
  color: #000;
  position: absolute;
  top: 54px;
  left: 20px;
  text-decoration: none;
}
.splash-email:hover {
  text-decoration: underline;
}
.splash-phone {
  font-family: "Cargo Monument", "Cargo Diatype", sans-serif;
  font-size: 12px;
  font-weight: 450;
  font-style: italic;
  color: #000;
  position: absolute;
  top: 72px;
  left: 20px;
  text-decoration: none;
}
.splash-phone:hover {
  text-decoration: underline;
}
.splash-link {
  font-family: "Cargo Monument", "Cargo Diatype", sans-serif;
  font-size: 12px;
  font-weight: 450;
  font-style: italic;
  color: #000;
  position: absolute;
  top: 90px;
  left: 20px;
  text-decoration: none;
}
.splash-link:hover {
  text-decoration: underline;
}
.splash-subtitle {
  font-family: "Cargo Monument", "Cargo Diatype", sans-serif;
  font-size: 18px;
  font-weight: 450;
  color: #000;
  padding: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}
.splash-corner-image {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 40vw;
  max-height: 40vh;
  width: auto;
  height: auto;
  object-fit: contain;
  z-index: 2;
}

@media (max-width: 500px) {
  .splash-corner-image {
    bottom: 2Opx;
    right: 2Opx;
    left: 2Opx;
    width: 92%;
    max-width: 92%;
    height: auto;
    max-height: none;
    object-fit: unset;
  }
}

.splash-cta {
  font-family: "Cargo Monument", "Cargo Diatype", sans-serif;
  font-size: 18px;
  font-weight: 450;
  color: #fff;
  padding: 40px 50px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
  position: relative;
  z-index: 2;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.splash-cta:hover {
  transform: translateX(5px);
}
