/* ============================================================
   AURARCO — pagine statiche (404, errori, privacy)
   Font self-hosted già dichiarati in styles.css
   ============================================================ */

.static-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(214, 185, 124, 0.06), transparent 55%),
    #050404;
  color: #faf3e8;
  font-family: 'Manrope', system-ui, sans-serif;
  text-align: center;
  padding: 24px;
}

.static-page__box { max-width: 520px; }

.static-page__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(5rem, 18vw, 9rem);
  line-height: 1;
  color: #d6b97c;
  letter-spacing: 0.02em;
}

.static-page__box h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 8px 0 12px;
}

.static-page__box p {
  color: rgba(250, 243, 232, 0.55);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 32px;
}

.static-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.static-page__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: linear-gradient(135deg, #d6b97c, #f2dba7);
  color: #0a0807;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: transform 250ms;
}

.static-page__btn--ghost {
  background: transparent;
  color: #faf3e8;
  border: 1px solid rgba(214, 185, 124, 0.45);
}

.static-page__btn:hover { transform: translateY(-1px); }

/* ---------- Pagina lunga (privacy) ---------- */

.doc-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(214, 185, 124, 0.05), transparent 45%),
    #050404;
  color: #faf3e8;
  font-family: 'Manrope', system-ui, sans-serif;
  padding: 64px 24px 96px;
}

.doc-page__inner {
  max-width: 760px;
  margin: 0 auto;
}

.doc-page__kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d6b97c;
  margin-bottom: 12px;
}

.doc-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 8px;
}

.doc-page h1 em {
  font-style: italic;
  color: #d6b97c;
}

.doc-page__updated {
  color: rgba(250, 243, 232, 0.45);
  font-size: 13.5px;
  margin: 0 0 40px;
}

.doc-page h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.45rem;
  color: #f2dba7;
  margin: 40px 0 10px;
}

.doc-page p,
.doc-page li {
  color: rgba(250, 243, 232, 0.72);
  font-size: 15px;
  line-height: 1.75;
}

.doc-page ul {
  padding-left: 20px;
  margin: 10px 0;
}

.doc-page a {
  color: #d6b97c;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.doc-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  color: rgba(250, 243, 232, 0.6);
  font-size: 13.5px;
  text-decoration: none;
}

.doc-page__back:hover { color: #d6b97c; }

.doc-page__footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(214, 185, 124, 0.18);
  color: rgba(250, 243, 232, 0.45);
  font-size: 13px;
}
