:root {
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-pink: #f6c9d4;
  --color-red: #e4032e;
  --color-white: #ffffff;
  --font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color-scheme: light;
}

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

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 480px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.profile__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

.profile__name {
  margin-top: 16px;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.15em;
}

.profile__subtitle {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.socials__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.socials__icon svg {
  width: 20px;
  height: 20px;
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links__heading {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 4px;
}

.btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px 16px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 2px;
}

.btn--secondary {
  background: var(--color-pink);
  color: var(--color-red);
}

.cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.cta__heading {
  font-weight: 400;
  letter-spacing: 0.05em;
}

.btn--cta {
  background: var(--color-red);
  color: var(--color-white);
}
