* {
  box-sizing: border-box;
}

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

body {
  font-family: "Montserrat", Arial, sans-serif;
  background: #080808;
  color: #ffffff;
}

.maintenance-page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.background {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    url("https://www.gssgroup.au/uploads/hero/4.png")
    center / cover no-repeat;
  transform: scale(1.03);
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at center, rgba(237, 180, 47, 0.08), transparent 35%),
    rgba(5, 5, 5, 0.91);
}

.content {
  width: min(90%, 760px);
  text-align: center;
  padding: 48px 24px;
}

.logo {
  display: block;
  width: clamp(150px, 18vw, 230px);
  max-height: 120px;
  object-fit: contain;
  margin: 0 auto;
}

.line {
  width: 64px;
  height: 4px;
  margin: 34px auto 28px;
  background: #edb42f;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .content {
    padding-inline: 18px;
  }

  .line {
    margin-top: 28px;
  }
}
