main.legal p {
  text-align: left;
  padding: 0;
  margin: 0;
  .legal-label {
    font-weight: 600;
  }
}
#footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #b0a89f;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 0.7rem 0 0.7rem 0;
  opacity: 0.7;
  background: transparent;
  z-index: 10;
}
.footer-copyright {
  font-size: 0.98rem;
  color: #b0a89f;
  opacity: 0.8;
  margin-bottom: 0.2em;
}
.footer-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.2em;
}
.footer-link {
  color: #b0a89f;
  text-decoration: none;
  opacity: 0.85;
  font-size: 0.98rem;
}
#now {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: #b0a89f;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  opacity: 0.85;
  transition:
    color 1.2s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}
/* Somnol — Minimal, time-aware sleep guidance */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  min-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f7f3e9;
  color: #222;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    Arial,
    sans-serif;
  transition:
    background 1.2s cubic-bezier(0.4, 0, 0.2, 1),
    color 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
#somnol {
  text-align: center;
  width: 100vw;
  max-width: 32rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  gap: 1.5rem;
  flex: 1 0 auto;
}
#message {
  font-size: clamp(1.5rem, 6vw, 2.8rem);
  font-weight: 500;
  margin: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
#message.visible {
  opacity: 1;
}
@media (max-width: 600px) {
  #somnol {
    max-width: 95vw;
  }
  #message {
    font-size: clamp(1.2rem, 8vw, 2.2rem);
  }
}
