*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f3ee;
  --text: #1a1918;
  --text-muted: #6b6762;
  --accent: #8b1e1e;
  --font-serif: "Cormorant Garamond", "Times New Roman", Times, serif;
  --font-sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 2rem;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  width: 100%;
  max-width: 28rem;
  text-align: center;
}

.brand {
  margin-bottom: 2rem;
}

.wordmark {
  font-family: var(--font-serif);
  font-size: clamp(3.25rem, 12vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1;
  text-indent: 0.28em;
  color: var(--text);
}

.tagline {
  margin-top: 0.85rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.rule {
  width: 3rem;
  height: 1px;
  margin: 0 auto 2rem;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent) 20%,
    var(--text) 100%
  );
  opacity: 0.55;
}

.context {
  font-size: 0.9375rem;
  color: var(--text);
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  margin-top: auto;
  padding-top: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--text);
}

.footer a:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 3px;
}

.footer__sep {
  opacity: 0.5;
}
