:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f4f3;
  color: #171717;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  min-height: 100svh;
  background:
    linear-gradient(135deg, rgba(247, 148, 49, 0.12), transparent 38%),
    #f4f4f3;
}

.page-shell {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 5vw, 4rem);
}

.maintenance-card {
  position: relative;
  width: min(100%, 46rem);
  overflow: hidden;
  padding: clamp(2rem, 7vw, 4.5rem);
  border-top: 0.45rem solid #f79431;
  background: #ffffff;
  box-shadow: 0 1.5rem 4.5rem rgba(0, 0, 0, 0.1);
}

.logo {
  display: block;
  width: min(100%, 27.125rem);
  height: auto;
}

.divider {
  width: 4rem;
  height: 0.2rem;
  margin: clamp(2rem, 6vw, 3.5rem) 0;
  background: #f79431;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: #9b4b00;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.35rem, 8vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.message {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  color: #3f3f3f;
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  line-height: 1.6;
}

.message strong {
  color: #171717;
  white-space: nowrap;
}

.thanks {
  margin: 1.5rem 0 0;
  color: #686868;
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 32rem) {
  .maintenance-card {
    padding: 2rem 1.5rem 2.25rem;
  }

  .divider {
    margin-block: 2rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .maintenance-card {
    animation: settle-in 500ms ease-out both;
  }

  @keyframes settle-in {
    from {
      opacity: 0;
      transform: translateY(0.75rem);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
