:root {
  --sand: #f4ebe0;
  --stone: #3d2f24;
  --gold: #b8956b;
  --muted: rgba(61, 47, 36, 0.72);
  --font-display: "Cormorant Garamond", Georgia, serif;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--stone);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--sand);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
}

.name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

.status {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}

.location {
  margin: 1.5rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}

.location::before,
.location::after {
  content: "—";
  margin: 0 0.75rem;
  opacity: 0.45;
}

.note {
  margin: 1.25rem 0 0;
  max-width: 22rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.contact {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--stone);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 149, 107, 0.5);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact:hover {
  color: var(--gold);
  border-color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  .contact {
    transition: none;
  }
}
