:root {
  --gold: #F9D82E;
  --gold-dark: #C9A800;
  --black: #0D0D0D;
  --charcoal: #1E1E1E;
  --slate: #3A3A3A;
  --mid: #6B6B6B;
  --off-white: #F8F7F2;
  --white: #FFFFFF;
  --font: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .16);
  --transition: .2s ease;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

html { font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.card {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.photo {
  width: 196px;
  height: 196px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
  flex-shrink: 0;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

.name {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.role {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.role::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold-dark);
  margin: 12px auto 0;
}

.bio {
  font-size: .95rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 32px;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-primary,
.btn-outline {
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid rgba(0, 0, 0, .09);
}

.btn-primary { margin-bottom: 6px; }

.btn-primary:hover,
.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.foot {
  margin-top: 32px;
  font-size: .78rem;
  color: var(--mid);
  line-height: 1.6;
}

.foot strong { color: var(--slate); font-weight: 600; }
.foot small { font-size: 1em; }

@media (max-width: 380px) {
  .photo { width: 160px; height: 160px; }
  .name { font-size: 1.5rem; }
}
