:root {
  --vino: #6f1220;
  --dorado: #c79a2b;
  --texto: #4a4a4a;
  --fondo: #ffffff;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(199,154,43,.08), transparent 38%),
    var(--fondo);
  color: var(--texto);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", sans-serif;
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 32px 20px 18px;
}

.hero {
  width: min(760px, 100%);
  margin: auto;
  text-align: center;
  animation: aparecer .7s ease-out both;
}

.logo {
  width: min(560px, 90vw);
  height: auto;
  display: block;
  margin: 0 auto 34px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--dorado);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: .16em;
}

.status::before,
.status::after {
  content: "";
  width: clamp(44px, 8vw, 100px);
  height: 1px;
  background: var(--dorado);
}

.message {
  max-width: 620px;
  margin: 26px auto 0;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.7;
}

footer {
  text-align: center;
  color: #777;
  font-size: .85rem;
  padding-top: 30px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@keyframes aparecer {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 520px) {
  .page { padding-top: 22px; }
  .logo { width: 96vw; margin-bottom: 22px; }
  .status { letter-spacing: .1em; }
}
