:root {
  color-scheme: light;
  --papel: #f2eee5;
  --tinta: #211f1b;
  --tinta-suave: #676055;
  --linea: #9c9182;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--papel);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--tinta);
  background:
    linear-gradient(90deg, rgba(33, 31, 27, 0.025) 1px, transparent 1px) 0 0 / 3px 100%,
    var(--papel);
  font-family: Georgia, "Times New Roman", serif;
}

.portada {
  width: min(90%, 52rem);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(4rem, 12vh, 8rem) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.sello,
.estado {
  margin: 0;
  color: var(--tinta-suave);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1 {
  margin: clamp(1.25rem, 4vw, 2.5rem) 0;
  max-width: 12ch;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.83;
  text-wrap: balance;
}

.separador {
  width: min(9rem, 30vw);
  height: 1px;
  margin-bottom: 1.5rem;
  background: var(--linea);
}

@media (max-width: 34rem) {
  .portada {
    width: min(86%, 28rem);
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
