:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  color: #292525;
  background: #faf7f5;
  font-synthesis: none;
  -webkit-text-size-adjust: 100%;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  border-top: 5px solid #800f23;
  background: radial-gradient(ellipse at 50% 35%, #fff 0%, #faf7f5 70%);
}

.maintenance {
  width: 100%;
  max-width: 760px;
  text-align: center;
  padding: 32px 0 48px;
}

.logo {
  display: block;
  width: min(100%, 370px);
  height: auto;
  margin: 0 auto;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 42px auto 32px;
  color: #800f23;
}

.ornament::before,
.ornament::after {
  content: "";
  width: 44px;
  height: 1px;
  background: #d3b5ba;
}

.ornament span {
  width: 6px;
  height: 6px;
  background: currentColor;
  transform: rotate(45deg);
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

p {
  margin: 24px auto 32px;
  max-width: 530px;
  color: #635858;
  font-size: 1rem;
  line-height: 1.8;
}

.contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  max-width: 100%;
  padding: 16px 28px;
  border: 1px solid #800f23;
  border-radius: 6px;
  background: #800f23;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
}

.contact svg { flex-shrink: 0; }
.contact:hover { background: #610b1a; border-color: #610b1a; }
.contact:focus-visible { outline: 3px solid #800f23; outline-offset: 5px; }

@media (max-width: 480px) {
  body { padding: 32px 24px; }
  .maintenance { padding: 24px 0; }
  .logo { width: min(100%, 290px); }
  .ornament { margin: 32px auto 28px; }
  .desktop-break { display: none; }
  .contact { padding-inline: 20px; }
}
