:root {
  --ink: #0f1c16;
  --ivory: #edeae0;
  --brass: #b8965a;
  --slate: #7a8b7f;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  background: radial-gradient(ellipse at 50% 35%, #16281f 0%, var(--ink) 65%);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

.plate {
  text-align: center;
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
  line-height: 1.6;
}

.name {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  letter-spacing: 0.01em;
  color: var(--ivory);
}

.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 28px auto;
  width: 100%;
  max-width: 280px;
}

.rule .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}

.rule .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
}

.tagline {
  margin: 0 0 26px;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--slate);
}

.links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.divider {
  color: var(--slate);
  font-size: 13px;
}

.contact {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact:hover,
.contact:focus-visible {
  color: var(--ivory);
  border-bottom-color: var(--brass);
}

.contact:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
