:root {
  --sage: #8A9A82;
  --sage-dark: #66765F;
  --sage-light: #D7DFD2;
  --cream: #FAF8F3;
  --charcoal: #2E332C;
  --charcoal-soft: #5B615A;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.card {
  width: 100%;
  max-width: 34rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fade-in 0.9s ease-out both;
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border: 1px solid var(--sage);
  border-radius: 999px;
  color: var(--sage-dark);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.headshot-wrap {
  width: clamp(7.5rem, 22vw, 10rem);
  height: clamp(7.5rem, 22vw, 10rem);
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
  background: var(--sage-light);
  border: 1px solid var(--sage);
  box-shadow: 0 1px 3px rgba(46, 51, 44, 0.08);
}

.headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.headshot-wrap--empty .headshot {
  display: none;
}

.headshot-wrap--empty {
  position: relative;
}

.headshot-wrap--empty::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--sage-light);
}

.name {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  letter-spacing: 0.01em;
  margin: 0 0 0.6rem;
  color: var(--charcoal);
}

.tagline {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-dark);
  line-height: 1.9;
  margin: 0 0 clamp(1.5rem, 4vw, 2.25rem);
}

.tagline-sep {
  display: inline-block;
  margin: 0 0.5em;
  color: var(--sage);
}

.teaser {
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  line-height: 1.75;
  color: var(--charcoal-soft);
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  max-width: 32rem;
}

.footer {
  font-size: 0.75rem;
  color: var(--charcoal-soft);
  opacity: 0.7;
  letter-spacing: 0.03em;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .card {
    animation: none;
  }
}
