/* ════════════════════════════════════════════════════════════════════════
   CASA PRIMICIA — Página "En mantenimiento"
   Identidad de marca: fondo negro, acento rojo Rioja, Cormorant + Mulish.
   ════════════════════════════════════════════════════════════════════════ */

:root {
  --c-bg: #0B0606;
  --c-text: #FFFFFF;
  --c-text-soft: #C7C7C7;
  --c-red: #C8102E;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", system-ui, -apple-system, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.maintenance {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  /* Sutil halo rojo de fondo para dar profundidad. */
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(200, 16, 46, 0.10), transparent 70%),
    var(--c-bg);
}

.maintenance__inner {
  max-width: 480px;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.maintenance__logo {
  width: clamp(150px, 38vw, 220px);
  height: auto;
  margin-bottom: 2.5rem;
}

.maintenance__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.maintenance__text {
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.7;
  color: var(--c-text-soft);
}

/* Pequeña línea roja decorativa bajo el título. */
.maintenance__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 1.5rem auto 0;
  background: var(--c-red);
}

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

@media (prefers-reduced-motion: reduce) {
  .maintenance__inner { animation: none; }
}
