/* Maintenance screen, on every page of the static copy. It covers the whole
   page and cannot be closed: the page stays in the HTML (URLs, titles and
   text for search engines), nobody sees it. Colours and font are the
   WordPress theme's own: #1b1b37 is its header/footer navy, Montserrat is
   already loaded by Elementor. Pure CSS, so it holds without JavaScript. */

html, body { overflow: hidden !important; }

.lya-mt {
  --lya-navy: #1b1b37;
  --lya-ink: #ffffff;
  --lya-muted: rgba(255, 255, 255, .72);
  --lya-line: rgba(255, 255, 255, .18);
  --lya-accent: #e8c77d;
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  overflow-y: auto;
  padding: 32px 16px;
  box-sizing: border-box;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232, 199, 125, .12), transparent 60%),
    var(--lya-navy);
  color: var(--lya-ink);
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.5;
  text-align: center;
}

.lya-mt__inner {
  margin: auto;
  max-width: 520px;
  animation: lya-mt-in .5s ease-out;
}

.lya-mt__logo {
  display: block;
  width: 96px;
  height: auto;
  margin: 0 auto 36px;
}

.lya-mt p { margin: 0; }

.lya-mt .lya-mt__eyebrow {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lya-accent);
}

.lya-mt .lya-mt__title {
  margin-bottom: 18px;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--lya-ink);
}

.lya-mt__title sup { font-size: .5em; }

.lya-mt__nw { white-space: nowrap; }

.lya-mt .lya-mt__text {
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--lya-muted);
}

.lya-mt .lya-mt__en {
  font-size: 14px;
  font-style: italic;
  color: var(--lya-muted);
}

.lya-mt .lya-mt__count {
  display: inline-block;
  margin-top: 22px;
  padding: 5px 14px;
  border: 1px solid var(--lya-line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--lya-ink);
}

.lya-mt__count[hidden] { display: none !important; }

.lya-mt .lya-mt__stores {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.lya-mt__stores a {
  padding: 10px 20px;
  border: 1px solid var(--lya-line);
  border-radius: 999px;
  color: var(--lya-ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.lya-mt__stores a:hover,
.lya-mt__stores a:focus-visible {
  border-color: var(--lya-accent);
  color: var(--lya-accent);
}

@keyframes lya-mt-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 480px) {
  .lya-mt__logo { width: 80px; margin-bottom: 28px; }
  .lya-mt .lya-mt__title { font-size: 28px; }
  .lya-mt .lya-mt__text { font-size: 15px; }
}

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