:root {
  --paper: #F6F4EF;
  --ink: #1C2B27;
  --gold: #B8862E;
}

* {
  box-sizing: border-box;
}

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

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Georgia', 'Iowan Old Style', serif;
  padding: 24px;
}

main {
  text-align: center;
  max-width: 480px;
}

.mark {
  display: inline-block;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
  transform: rotate(-45deg);
}

h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
}

.tagline {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(28, 43, 39, 0.75);
  margin: 0 0 32px;
}

.status {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px;
}

.contact {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

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

@media (prefers-reduced-motion: no-preference) {
  .mark {
    transition: transform 0.3s ease;
  }
}
