:root {
  --navy: #012169;
  --royal: #00539B;
  --graphite: #666666;
  --limestone: #E5E5E5;
}

* { box-sizing: border-box; }

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

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--navy);
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

a:hover {
  opacity: 0.75;
}

main {
  text-align: center;
  padding: 2rem;
}

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.headshot {
  display: block;
  width: 140px;
  height: 140px;
  border-radius: 0;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  box-shadow: 0 2px 10px rgba(1, 33, 105, 0.18);
}

.rule {
  width: 48px;
  height: 3px;
  background: var(--royal);
  margin: 0 auto 1.25rem;
  border-radius: 2px;
}

p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--graphite);
  letter-spacing: 0.02em;
}

.contact {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}
