:root {
  --ink: #0c0b09;
  --ivory: #f3efe6;
  --muted: #8a8478;
  --line: rgba(243, 239, 230, 0.16);
  --brass: #c4a574;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: "Sora", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  position: relative;
  overflow: hidden;
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(196, 165, 116, 0.08), transparent 46%),
    radial-gradient(ellipse at 80% 90%, rgba(243, 239, 230, 0.03), transparent 40%);
}

.page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.top,
.bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.mark {
  color: var(--ivory);
}

.domain {
  color: var(--muted);
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 18ch;
  padding: 8vh 0;
}

.given,
.family {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.given {
  font-style: italic;
  font-size: clamp(3.4rem, 11vw, 7.5rem);
  color: rgba(243, 239, 230, 0.72);
}

.family {
  font-size: clamp(3.8rem, 12vw, 8.2rem);
}

.rule {
  width: 3.25rem;
  height: 1px;
  margin: 2rem 0 1.35rem;
  background: var(--brass);
  border: 0;
}

.meta {
  margin: 0;
  max-width: 28rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.status {
  display: block;
  margin-top: 0.7rem;
  color: var(--ivory);
}

.bottom a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.12rem;
}

.bottom a:hover {
  color: var(--ivory);
  border-bottom-color: var(--brass);
}

@media (max-width: 640px) {
  .top,
  .bottom {
    letter-spacing: 0.14em;
  }

  .hero {
    max-width: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero {
    animation: rise 900ms ease-out both;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
