@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/inter-400.woff2) format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/inter-700.woff2) format('woff2');
}

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

:root {
  --color-bg: #fafafa;
  --color-text: #1a1a1a;
  --color-subtle: #6b6b6b;
  --color-accent: #b8860b;
  --color-accent-hover: #96700a;
  --color-card: #ffffff;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-photo: 0 8px 32px rgba(0, 0, 0, 0.12);
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.card {
  text-align: center;
  max-width: 420px;
  width: 100%;
  padding: 3rem 2rem;
  background: var(--color-card);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-photo);
  margin-bottom: 1.75rem;
  border: 4px solid var(--color-card);
  outline: 2px solid rgba(184, 134, 11, 0.2);
}

.name {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1rem;
  color: var(--color-subtle);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
  margin: 0 auto 2rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-subtle);
  text-decoration: none;
  transition: all 0.2s ease;
}

.socials a:hover,
.socials a:focus-visible {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.socials a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 480px) {
  .card {
    padding: 2.5rem 1.5rem;
    border-radius: 1.25rem;
  }

  .photo {
    width: 150px;
    height: 150px;
  }

  .name {
    font-size: 1.5rem;
  }
}
