:root {
  --brand: #c8102e;
  --text: #171717;
  --muted: #686868;
}

* { box-sizing: border-box; }

html { min-height: 100%; background: #ffffff; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 20%, rgba(200, 16, 46, 0.05), transparent 28rem),
    #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.maintenance {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(28px, 6vw, 72px) 20px;
}

.maintenance__card {
  width: min(100%, 920px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.maintenance__brand {
  display: block;
  width: min(100%, 540px);
  margin: 0 auto 22px;
}

.maintenance__brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.maintenance__copy {
  width: min(100%, 760px);
}

h1 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.lead {
  margin: 18px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.75;
}

@media (max-width: 600px) {
  .maintenance { padding: 24px 18px 36px; }
  .maintenance__brand { width: min(100%, 400px); margin-bottom: 18px; }
  .lead { line-height: 1.65; }
}
