:root {
  color: #000;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: #fff;
  opacity: 0;
  animation: maintenance-fade-in .65s ease-out forwards;
}

img {
  display: block;
  max-width: 100%;
}

.maintenance {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
  padding: clamp(1rem, 2vw, 2rem);
}

.maintenance-logo {
  width: min(var(--maintenance-logo-width, 160px), 80vw);
  height: auto;
}

.maintenance-content {
  max-width: 48rem;
}

.maintenance h1,
.maintenance-text,
.maintenance-contact {
  font-size: 1rem;
  line-height: 1.3;
}

.maintenance h1 {
  margin: 0 0 1.5rem;
  font-weight: 400;
}

.maintenance-text {
  margin: 0 0 1.5rem;
}

.maintenance-contact {
  color: inherit;
  text-decoration: none;
}

.maintenance-contact:hover,
.maintenance-contact:focus-visible {
  text-decoration: underline;
}

@keyframes maintenance-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  body {
    opacity: 1;
    animation: none;
  }
}
