* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #020509;
  font-family: Arial, Helvetica, sans-serif;
}

.splash {
  position: relative;
  width: 100vw;
  min-height: 100svh;
  overflow: hidden;
  background: #020509;
}

picture,
img {
  display: block;
  width: 100%;
  height: 100svh;
}

img {
  object-fit: cover;
  object-position: center center;
}

.contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 12px 18px;
  border: 1px solid rgba(212, 171, 86, 0.7);
  border-radius: 999px;
  color: #f5e2b5;
  background: rgba(0, 0, 0, 0.45);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.contact:hover {
  border-color: rgba(255, 219, 142, 1);
  color: #fff3d1;
}

@media (max-width: 768px) {
  .contact {
    right: 50%;
    transform: translateX(50%);
    bottom: 18px;
    padding: 11px 18px;
    font-size: 11px;
  }
}
