:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f4efe5;
  color: #252018;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgb(255 255 255 / 70%), transparent 38%),
    #f4efe5;
}

.redirect-card {
  width: min(100%, 560px);
  padding: clamp(28px, 6vw, 52px);
  border: 1px solid #d9cfbf;
  border-radius: 24px;
  background: rgb(255 253 249 / 90%);
  box-shadow: 0 24px 70px rgb(72 54 31 / 12%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #725531;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 7vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

p {
  margin: 18px auto 0;
  max-width: 42ch;
  color: #655d52;
  line-height: 1.65;
}

a {
  display: inline-block;
  margin-top: 26px;
  padding: 13px 20px;
  border-radius: 999px;
  background: #725531;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  background: #5e4427;
}

a:focus-visible {
  outline: 3px solid #d3a860;
  outline-offset: 4px;
}

.noscript-note {
  font-size: 0.9rem;
}
